##// END OF EJS Templates
Bug fixed in Signal Chain GUI Installer
Miguel Valdez -
r582:153d85398474
parent child
Show More

The requested changes are too big and content was truncated. Show full diff

1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
@@ -1,29 +1,31
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 distutils.core import setup, Extension
7 from distutils.core import setup, Extension
8
8
9 setup(name="schainpy",
9 setup(name="schainpy",
10 version="2.0",
10 version="2.0",
11 description="Python tools to read, write and process Jicamarca data",
11 description="Python tools to read, write and process Jicamarca data",
12 author="Miguel Urco",
12 author="Miguel Urco",
13 author_email="miguel.urco@jro.igp.gob.pe",
13 author_email="miguel.urco@jro.igp.gob.pe",
14 url="http://jro.igp.gob.pe",
14 url="http://jro.igp.gob.pe",
15 packages = {'schainpy',
15 packages = {'schainpy',
16 'schainpy.model',
16 'schainpy.model',
17 'schainpy.model.data',
17 'schainpy.model.data',
18 'schainpy.model.graphics',
18 'schainpy.model.graphics',
19 'schainpy.model.io',
19 'schainpy.model.io',
20 'schainpy.model.proc',
20 'schainpy.model.proc',
21 'schainpy.model.utils',
21 'schainpy.model.utils',
22 'schainpy.gui',
22 'schainpy.gui.figure',
23 'schainpy.gui.figure',
23 'schainpy.gui.viewcontroller',
24 'schainpy.gui.viewcontroller',
24 'schainpy.gui.viewer'},
25 'schainpy.gui.viewer',
26 'schainpy.gui.viewer.windows'},
25 py_modules=['schainpy.serializer.DataTranslate',
27 py_modules=['schainpy.serializer.DataTranslate',
26 'schainpy.serializer.JROSerializer'],
28 'schainpy.serializer.JROSerializer'],
27 package_data={'schainpy.gui.figure': ['*.jpg', '*.png', '*.gif']},
29 package_data={'schainpy.gui.figure': ['*.jpg', '*.png', '*.gif']},
28 include_package_data=True,
30 include_package_data=True,
29 scripts =['schainpy/gui/schaingui.py']) No newline at end of file
31 scripts =['schainpy/gui/schaingui.py'])
General Comments 0
You need to be logged in to leave comments. Login now