Skip to content

Commit fd3ebb3

Browse files
committed
Updated with new version, new location of script (library) and package
now includes all notebook examples
1 parent aa39e42 commit fd3ebb3

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
package_list = find_packages()
88

99
setup(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',
@@ -28,5 +29,12 @@
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
)

0 commit comments

Comments
 (0)