-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
49 lines (46 loc) · 1.48 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
#!/usr/bin/env python
'''
Build/install Wire Cell Toolkit Python
'''
from setuptools import setup, find_packages
setup(
name = 'wirecell',
version = '0.0',
packages = find_packages(),
install_requires = [
'Click',
'pytest',
'numpy',
'matplotlib',
'networkx',
'gojsonnet',
'semver',
'sqlalchemy',
'semver',
'scipy',
'moo @ git+https://github.com/brettviren/[email protected]#egg=moo',
# 'mayavi',
# 'vtk',
],
extras_require = {
# parse TbbFlow logs and make anigif showing graph states
'anidfg': ["GraphvizAnim"]
},
entry_points = dict(
console_scripts = [
'wirecell-sigproc = wirecell.sigproc.__main__:main',
'wirecell-util = wirecell.util.__main__:main',
'wirecell-gen = wirecell.gen.__main__:main',
'wirecell-validate = wirecell.validate.__main__:main',
'wirecell-pgraph = wirecell.pgraph.__main__:main',
'wirecell-img = wirecell.img.__main__:main',
'wirecell-resp = wirecell.resp.__main__:main',
'wirecell-plot = wirecell.plot.__main__:main',
'wirecell-pytorch = wirecell.pytorch.__main__:main',
'wirecell-aux = wirecell.aux.__main__:main',
'wirecell-test = wirecell.test.__main__:main',
'wirecell-ls4gan = wirecell.ls4gan.__main__:main',
'wirecell-dnn = wirecell.dnn.__main__:main',
]
)
)