##// END OF EJS Templates
cli dentro del build de schain
cli dentro del build de schain

File last commit:

r939:09d2a48bbf67
r939:09d2a48bbf67
Show More
setup.py
53 lines | 1.9 KiB | text/x-python | PythonLexer
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 '''
Created on Jul 16, 2014
Juan C. Valdez
Add C extension for hildebrand_sekhon noise estimation and update requirements versions in setup
r878 @author: Miguel Urco
Miguel Valdez
Merge with branch schain_julia_drifts from rev. 803 to 995....
r568 '''
Miguel Valdez
About window was added to SChainGUI...
r642 from schainpy import __version__
Miguel Valdez
setup.py is using setuptools since now
r656 from setuptools import setup, Extension
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
Schain Installer v2.2.0
r709 'schainpy.model.serializer',
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'},
Juan C. Valdez
Add C extension for hildebrand_sekhon noise estimation and update requirements versions in setup
r878 ext_package='schainpy',
Miguel Valdez
Schain Installer v2.2.0
r709 py_modules=[''],
Miguel Valdez
Bug fixed in setup.py: SChain installer did not include package data [*.png, *.jpg, *.conf]
r682 package_data={'': ['schain.conf.template'],
'schainpy.gui.figures': ['*.png','*.jpg'],
Miguel Valdez
r681 },
Miguel Valdez
Bug fixed in setup.py: SChain installer did not include package data [*.png, *.jpg, *.conf]
r682 include_package_data=False,
José Chávez
cli dentro del build de schain
r939 entry_points={
'console_scripts': [
'schain = schaincli.schaincli.cli:main',
],
},
scripts =['schainpy/gui/schainGUI'],
Juan C. Valdez
Add C extension for hildebrand_sekhon noise estimation and update requirements versions in setup
r878 ext_modules=[Extension("cSchain", ["schainpy/model/proc/extensions.c"])],
Juan C. Valdez
Version 2.2.5 Fixed several bugs, add jro colormap for spectra/rti, add ParamWriter, TODO: Fix decimation currently disabled
r860 install_requires=[
Juan C. Valdez
Add C extension for hildebrand_sekhon noise estimation and update requirements versions in setup
r878 "scipy >= 0.14.0",
"h5py >= 2.2.1",
"matplotlib >= 1.4.2",
"pyfits >= 3.4",
"numpy >= 1.11.2",
"paramiko >= 2.1.2",
"paho-mqtt >= 1.2",
"zmq",
José Chávez
finishing day, need testing
r931 "fuzzywuzzy"
Miguel Valdez
setup.py is using setuptools since now
r656 ],
José Chávez
finishing day, need testing
r931 )