-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
36 lines (33 loc) · 1.27 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
31
32
33
34
35
36
from setuptools import find_packages, setup # prefer setuptools over distutils
with open('README.rst') as file:
long_description = file.read()
with open('VERSION') as file:
version = file.read()
setup(
name='testimony',
version=version,
url='https://github.com/SatelliteQE/testimony/',
author='Suresh Thirugn',
author_email='[email protected]',
packages=find_packages(),
install_requires=['Click', 'termcolor', 'docutils', 'pyyaml'],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points="""
[console_scripts]
testimony=testimony.cli:testimony
""",
description='Testimony inspects and reports on the python test cases.',
long_description=long_description,
long_description_content_type='text/x-rst',
)