forked from morganstanley/testplan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (51 loc) · 1 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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
'''
Setup testplan and dependencies.
'''
import sys
from setuptools import setup, find_packages
REQUIRED = [
'sphinx',
'sphinx_rtd_theme',
'setuptools',
'pytest',
'py',
'psutil',
'six',
'future',
'schema',
'pytz',
'lxml',
'python-dateutil',
'reportlab',
'marshmallow==3.0.0b2',
'mock',
'termcolor',
'colorama',
'enum34',
'pyzmq',
'terminaltables',
'pyparsing',
'cycler',
'Pillow<6.0.0',
'matplotlib',
'numpy',
'scikit-learn',
'scipy',
"functools32; python_version <= '2.7'",
'requests>=2.4.3',
'flask',
'flask_restplus',
'cheroot'
]
setup(name='Testplan',
version='1.0',
description='Testplan testing framework',
author='',
author_email='[email protected]',
url='https://github.com/Morgan-Stanley/testplan',
packages=['testplan'] + find_packages(),
include_package_data=True,
install_requires=REQUIRED,
scripts=['install-testplan-ui']
)