File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77package_list = find_packages ()
88
99setup (name = package_name ,
10- version = '1.0 .0' ,
10+ version = '1.1 .0' ,
1111 packages = package_list ,
1212 zip_safe = False ,
13- scripts = [ 'bin/skdaccess' ],
13+
1414 install_requires = ['tqdm' ,
1515 'numpy>=1.10' ,
1616 'pandas>=0.17' ,
1717 'tables' ,
1818 'scipy' ,
1919 'setuptools' ,
2020 'astropy>=1.1.2' ],
21+
2122 description = 'Scikit Data Access Package for accessing scientific data sets.' ,
2223 author = 'MITHAGI' ,
2324 author_email = 'skdaccess@mit.edu' ,
2829 'Programming Language :: Python :: 3 :: Only'
2930 ],
3031
31- package_data = {'skdaccess' : ['examples/groundwater_example.py' ,'docs/skdaccess_doxygen.pdf' ,'docs/skdaccess_manual.pdf' ]}
32+ package_data = {'skdaccess' : ['examples/groundwater_example.py' , 'examples/Demo_Grace.ipynb' ,
33+ 'examples/Demo_Groundwater.ipynb' , 'examples/Demo_Kepler.ipynb' ,
34+ 'examples/Demo_PBO.ipynb' ,'docs/skdaccess_doxygen.pdf' ,
35+ 'docs/skdaccess_manual.pdf' ]},
36+
37+ entry_points = {'console_scripts' : [
38+ 'skdaccess = skdaccess.commands:skdaccess_script'
39+ ]}
3240 )
You can’t perform that action at this time.
0 commit comments