##// END OF EJS Templates
GUI: Bug fixed when *Read from header* is selected...
GUI: Bug fixed when *Read from header* is selected jroproc_voltage: Exception when number of heights is lower than number of bauds

File last commit:

r642:c6531a7a640a
r655:9d147099e1e8
Show More
setup.py
31 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
Miguel Valdez
About window was added to SChainGUI...
r642 from schainpy import __version__
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568
setup(name="schainpy",
Miguel Valdez
About window was added to SChainGUI...
r642 version=__version__,
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
Bug fixed in SchainGUI: figures were not been loaded
r583 'schainpy.gui.figures',
Miguel Valdez
tests updated
r579 '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'],
Miguel Valdez
Bug fixed in SchainGUI: figures were not been loaded
r583 package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']},
Miguel Valdez
tests updated
r579 include_package_data=True,
Miguel Valdez
Bug fixed in SchainGUI: figures were not been loaded
r583 scripts =['schainpy/gui/schainGUI'])