##// END OF EJS Templates
setup.py is using setuptools since now
Miguel Valdez -
r656:a822cce60202
parent child
Show More
@@ -1,32 +1,38
1 1 '''
2 2 Created on Jul 16, 2014
3 3
4 4 @author: roj-idl71
5 5 '''
6 6
7 from distutils.core import setup, Extension
8 7 from schainpy import __version__
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.utils',
23 23 'schainpy.gui',
24 24 'schainpy.gui.figures',
25 25 'schainpy.gui.viewcontroller',
26 26 'schainpy.gui.viewer',
27 27 'schainpy.gui.viewer.windows'},
28 28 py_modules=['schainpy.serializer.DataTranslate',
29 29 'schainpy.serializer.JROSerializer'],
30 30 package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']},
31 31 include_package_data=True,
32 scripts =['schainpy/gui/schainGUI']) No newline at end of file
32 scripts =['schainpy/gui/schainGUI'],
33 install_requires=["numpy >= 1.6.0",
34 "scipy >= 0.11.0",
35 "h5py >= 2.0.1",
36 "matplotlib >= 1.0.0"
37 ],
38 ) No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now