##// END OF EJS Templates
setup.py is using setuptools since now
Miguel Valdez -
r656:a822cce60202
parent child
Show More
@@ -4,8 +4,8 Created on Jul 16, 2014
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 from distutils.core import setup, Extension
8 from schainpy import __version__
7 from schainpy import __version__
8 from setuptools import setup, Extension
9
9
10 setup(name="schainpy",
10 setup(name="schainpy",
11 version=__version__,
11 version=__version__,
@@ -29,4 +29,10 setup(name="schainpy",
29 'schainpy.serializer.JROSerializer'],
29 'schainpy.serializer.JROSerializer'],
30 package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']},
30 package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']},
31 include_package_data=True,
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