-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (52 loc) · 1.59 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
from distutils.core import setup
setup(
name='photon_stream_production',
version='0.0.1',
description='Produce the photon_stream at ISDC at Geneva',
url='https://github.com/fact-project/',
author='Sebastian Achim Mueller',
author_email='[email protected]',
license='MIT',
packages=[
'photon_stream_production',
'photon_stream_production.ethz',
'photon_stream_production.isdc',
'photon_stream_production.sim',
],
package_data={
'photon_stream_production': [
'tests/resources/*',
'resources/*',
]
},
install_requires=[
'docopt',
'scipy',
'scikit-learn',
'scikit-image',
'matplotlib',
'pyfact',
'pandas',
'tqdm',
'ujson',
'qstat',
'filelock'
],
entry_points={'console_scripts': [
'phs.isdc.obs.synclapalma = ' +
'photon_stream_production.isdc.synclapalma_main:main',
'phs.isdc.obs.produce = ' +
'photon_stream_production.isdc.produce_main:main',
'phs.isdc.obs.produce.worker = ' +
'photon_stream_production.isdc.worker_node_produce:main',
'phs.isdc.obs.status = ' +
'photon_stream_production.isdc.status_main:main',
'phs.isdc.obs.status.worker = ' +
'photon_stream_production.isdc.worker_node_status:main',
'phs.sim.produce.worker = ' +
'photon_stream_production.sim.worker_node_produce:main',
'phs.isdc.backup.to.ethz = ' +
'photon_stream_production.backup_main:main',
]},
zip_safe=False,
)