-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (44 loc) · 1.19 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
#!/usr/bin/env python
from glob import glob
from setuptools import setup, find_packages
setup(
name='orchestrator',
version='0.0.1',
description='Orchestrates the subsystems responsible for Phase II CP2',
author='Chris Timperley',
author_email='ctimperley@cmu.edu',
url='https://github.com/cmu-mars/p2c2-orchestrator',
license='mit',
python_requires='>=3.5',
install_requires=[
'darjeeling==0.1.11',
'bugzoo==2.1.14',
'boggart==0.1.12',
'rooibos==0.3.0',
'kaskara==0.0.3',
'requests',
'flask'
],
# setup_requires=[
# 'pytest-runner'
# ],
# tests_require=[
# 'pytest'
# ],
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={
'': ['*.yml', 'data/*.json']
},
py_modules=[
splitext(basename(path))[0] for path in glob('src/*.py')
],
test_suite='tests',
entry_points = {
'console_scripts': [
'orchestrator-instrument = orchestrator.instrument:instrument',
'orchestrator-extract = orchestrator.donor:extract',
'orchestrator-precompute = orchestrator.coverage:precompute'
]
}
)