##// END OF EJS Templates
Bug fixed in Signal Chain GUI Installer
Bug fixed in Signal Chain GUI Installer

File last commit:

r582:153d85398474
r582:153d85398474
Show More
setup.py
30 lines | 1.1 KiB | text/x-python | PythonLexer
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 '''
Created on Jul 16, 2014
@author: roj-idl71
'''
from distutils.core import setup, Extension
setup(name="schainpy",
Miguel Valdez
r577 version="2.0",
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 description="Python tools to read, write and process Jicamarca data",
author="Miguel Urco",
author_email="miguel.urco@jro.igp.gob.pe",
url="http://jro.igp.gob.pe",
Miguel Valdez
tests updated
r579 packages = {'schainpy',
'schainpy.model',
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 'schainpy.model.data',
'schainpy.model.graphics',
'schainpy.model.io',
'schainpy.model.proc',
Miguel Valdez
tests updated
r579 'schainpy.model.utils',
Miguel Valdez
Bug fixed in Signal Chain GUI Installer
r582 'schainpy.gui',
Miguel Valdez
tests updated
r579 'schainpy.gui.figure',
'schainpy.gui.viewcontroller',
Miguel Valdez
Bug fixed in Signal Chain GUI Installer
r582 'schainpy.gui.viewer',
'schainpy.gui.viewer.windows'},
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 py_modules=['schainpy.serializer.DataTranslate',
Miguel Valdez
tests updated
r579 'schainpy.serializer.JROSerializer'],
package_data={'schainpy.gui.figure': ['*.jpg', '*.png', '*.gif']},
include_package_data=True,
scripts =['schainpy/gui/schaingui.py'])