forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 929 Bytes
/
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
#!/usr/bin/env python
from setuptools import find_packages, 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.10",
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',
),
)