##// END OF EJS Templates
Fix paho-mqtt dependence and schain script
Juan C. Valdez -
r861:1d4ad32e1795
parent child
Show More
@@ -1,44 +1,45
1 1 '''
2 2 Created on Jul 16, 2014
3 3
4 4 @author: @author: Miguel Urco
5 5 '''
6 6
7 7 from schainpy import __version__
8 8 from setuptools import setup, Extension
9 9
10 10 setup(name="schainpy",
11 11 version=__version__,
12 12 description="Python tools to read, write and process Jicamarca data",
13 13 author="Miguel Urco",
14 14 author_email="miguel.urco@jro.igp.gob.pe",
15 15 url="http://jro.igp.gob.pe",
16 16 packages = {'schainpy',
17 17 'schainpy.model',
18 18 'schainpy.model.data',
19 19 'schainpy.model.graphics',
20 20 'schainpy.model.io',
21 21 'schainpy.model.proc',
22 22 'schainpy.model.serializer',
23 23 'schainpy.model.utils',
24 24 'schainpy.gui',
25 25 'schainpy.gui.figures',
26 26 'schainpy.gui.viewcontroller',
27 27 'schainpy.gui.viewer',
28 28 'schainpy.gui.viewer.windows'},
29 29 py_modules=[''],
30 30 package_data={'': ['schain.conf.template'],
31 31 'schainpy.gui.figures': ['*.png','*.jpg'],
32 32 },
33 33 include_package_data=False,
34 34 scripts =['schainpy/gui/schainGUI',
35 35 'schainpy/scripts/schain'],
36 36 install_requires=[
37 37 "scipy >= 0.9.0",
38 38 "h5py >= 2.0.1",
39 39 "matplotlib >= 1.0.0",
40 40 "pyfits >= 2.0.0",
41 41 "numpy >= 1.6.0",
42 "paramiko",
42 "paramiko",
43 "paho-mqtt"
43 44 ],
44 45 ) No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now