forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
with open('README.rst') as f:
README = f.read()
setup(
name='robottelo',
version='0.1.0',
description='Robottelo is a test suite which exercises The Foreman.',
long_description=README,
author='Satellite QE Team',
url='https://github.com/SatelliteQE/robottelo',
packages=find_packages(exclude=['tests*']),
package_data={'': ['LICENSE']},
include_package_data=True,
license='GNU GPL v3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
python_requires="~=3.6", # We run on 3.8, relaxed lower limit
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
),
)