-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (37 loc) · 1.03 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
import glob
import setuptools
import workflowwebtools
setuptools.setup(
name='workflowwebtools',
version=workflowwebtools.__version__,
packages=setuptools.find_packages(),
author='Daniel Abercrombie',
author_email='[email protected]',
description='Provides a server for Production and Reprocessing operations',
url='https://github.com/CMSCompOps/WorkflowWebTools',
scripts=[s for s in glob.glob('bin/*') if not s.endswith('~')],
package_data={
'workflowwebtools': ['default/config.yml'],
'workflowwebtools.web': ['static/*/*',
'templates/*']
},
install_requires=[
'requests',
'cmstoolbox>=0.17.0',
'CMSMonitoring',
'more-itertools',
'cherrypy',
'mako',
'numpy',
'scikit-learn',
'passlib',
'bcrypt',
'pyOpenSSL',
'pytest>=4.4.2'
'pyyaml>=5.1',
'validators',
'tabulate',
'pymongo', #<3.5.0',
'cx_Oracle'
]
)