forked from morganstanley/testplan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (44 loc) · 843 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
'''
Setup testplan and dependencies.
'''
import sys
from setuptools import setup, find_packages
REQUIRED = [
'pytest',
'py',
'psutil',
'six',
'future',
'setuptools',
'schema',
'pytz',
'lxml',
'python-dateutil',
'reportlab',
'marshmallow==3.0.0b2',
'mock',
'termcolor',
'colorama',
'enum34',
'pyzmq',
'terminaltables',
'pyparsing',
'cycler',
'scipy',
'sklearn',
'numpy',
'matplotlib',
'sphinx',
'sphinx_rtd_theme',
'requests>=2.4.3'
]
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(),
install_requires=REQUIRED
)