##// 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
'''
Created on Jul 16, 2014
@author: roj-idl71
'''
from distutils.core import setup, Extension
from schainpy import __version__
setup(name="schainpy",
version=__version__,
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",
packages = {'schainpy',
'schainpy.model',
'schainpy.model.data',
'schainpy.model.graphics',
'schainpy.model.io',
'schainpy.model.proc',
'schainpy.model.utils',
'schainpy.gui',
'schainpy.gui.figures',
'schainpy.gui.viewcontroller',
'schainpy.gui.viewer',
'schainpy.gui.viewer.windows'},
py_modules=['schainpy.serializer.DataTranslate',
'schainpy.serializer.JROSerializer'],
package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']},
include_package_data=True,
scripts =['schainpy/gui/schainGUI'])