forked from SatelliteQE/testfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 970 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
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
with open("README.rst") as handle:
LONG_DESCRIPTION = handle.read()
with open("VERSION") as handle:
VERSION = handle.read().strip()
REQUIREMENTS = [
"ansible",
"pytest-ansible",
"pytest",
"unittest2",
]
setup(
name="testfm",
version=VERSION,
description="TestFM is a test suite which exercises satellite-maintain tool.",
long_description=LONG_DESCRIPTION,
url="https://github.com/SatelliteQE/testfm",
author="Nikhil Kathole",
author_email="[email protected]",
license="GNU GPL v3.0",
classifiers=[
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU General Public License v3 or later " "(GPLv3+)"),
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
packages=find_packages(exclude=["docs"]),
install_requires=REQUIREMENTS,
)