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