forked from travispavek/testrail-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.48 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
37
38
39
40
41
42
43
44
import sys
from setuptools import setup
install_requires = [
'requests>=2.6.0',
'singledispatch>=3.4.0',
'pyyaml>=3.1.1',
'future',
'retry',
]
if sys.version_info[:3] < (2, 7, 0):
install_requires.append('ordereddict')
setup(
name='testrail',
packages=['testrail'],
version='0.3.13',
description='Python library for interacting with TestRail via REST APIs.',
author='Travis Pavek',
author_email='[email protected]',
url='https://github.com/travispavek/testrail-python',
download_url='https://github.com/travispavek/testrail-python/tarball/0.3.13',
keywords=['testrail', 'api', 'client', 'library', 'rest'],
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)