##// END OF EJS Templates
wxpython is already not a requirement for Signal Chain
Ivan Valdez -
r690:61c1ccae551d
parent child
Show More
@@ -1,41 +1,40
1 '''
1 '''
2 Created on Jul 16, 2014
2 Created on Jul 16, 2014
3
3
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 from schainpy import __version__
7 from schainpy import __version__
8 from setuptools import setup, Extension
8 from setuptools import setup, Extension
9
9
10 setup(name="schainpy",
10 setup(name="schainpy",
11 version=__version__,
11 version=__version__,
12 description="Python tools to read, write and process Jicamarca data",
12 description="Python tools to read, write and process Jicamarca data",
13 author="Miguel Urco",
13 author="Miguel Urco",
14 author_email="miguel.urco@jro.igp.gob.pe",
14 author_email="miguel.urco@jro.igp.gob.pe",
15 url="http://jro.igp.gob.pe",
15 url="http://jro.igp.gob.pe",
16 packages = {'schainpy',
16 packages = {'schainpy',
17 'schainpy.model',
17 'schainpy.model',
18 'schainpy.model.data',
18 'schainpy.model.data',
19 'schainpy.model.graphics',
19 'schainpy.model.graphics',
20 'schainpy.model.io',
20 'schainpy.model.io',
21 'schainpy.model.proc',
21 'schainpy.model.proc',
22 'schainpy.model.utils',
22 'schainpy.model.utils',
23 'schainpy.gui',
23 'schainpy.gui',
24 'schainpy.gui.figures',
24 'schainpy.gui.figures',
25 'schainpy.gui.viewcontroller',
25 'schainpy.gui.viewcontroller',
26 'schainpy.gui.viewer',
26 'schainpy.gui.viewer',
27 'schainpy.gui.viewer.windows'},
27 'schainpy.gui.viewer.windows'},
28 py_modules=['schainpy.serializer.DataTranslate',
28 py_modules=['schainpy.serializer.DataTranslate',
29 'schainpy.serializer.JROSerializer'],
29 'schainpy.serializer.JROSerializer'],
30 package_data={'': ['schain.conf.template'],
30 package_data={'': ['schain.conf.template'],
31 'schainpy.gui.figures': ['*.png','*.jpg'],
31 'schainpy.gui.figures': ['*.png','*.jpg'],
32 },
32 },
33 include_package_data=False,
33 include_package_data=False,
34 scripts =['schainpy/gui/schainGUI'],
34 scripts =['schainpy/gui/schainGUI'],
35 install_requires=["numpy >= 1.6.0",
35 install_requires=["numpy >= 1.6.0",
36 "scipy >= 0.9.0",
36 "scipy >= 0.9.0",
37 "h5py >= 2.0.1",
37 "h5py >= 2.0.1",
38 "wxpython >= 2.8",
39 "matplotlib >= 1.0.0"
38 "matplotlib >= 1.0.0"
40 ],
39 ],
41 ) No newline at end of file
40 )
General Comments 0
You need to be logged in to leave comments. Login now