setup.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 '''
3 Build/install Wire Cell Toolkit Python
4 
5 FIXME: this currently is broken if installed in the wider context of a
6 top-level wirecell package.
7 '''
8 
9 from setuptools import setup, find_packages
10 setup(
11  name = 'wirecell',
12  version = '0.0',
13  packages = find_packages(),
14  install_requires = [
15  'Click',
16  'numpy',
17  'matplotlib',
18  'mayavi',
19  'networkx',
20  ],
21  entry_points = dict(
22  console_scripts = [
23  'wirecell-sigproc = wirecell.sigproc.main:main',
24  'wirecell-util = wirecell.util.main:main',
25  'wirecell-gen = wirecell.gen.main:main',
26  'wirecell-validate = wirecell.validate.main:main',
27  'wirecell-pgraph = wirecell.pgraph.main:main',
28  'wirecell-img = wirecell.img.main:main',
29  ]
30  )
31 )
32 
Definition: setup.py:1