Skip to content

Commit 447e3b9

Browse files
committed
upgrade of library
1 parent 9115bab commit 447e3b9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,22 @@
2323
# 'src/scripts/EddyTrackingFull'
2424
],
2525
zip_safe=False,
26-
cmdclass={
27-
'build_ext': cython_build_ext,
28-
},
26+
cmdclass=dict(
27+
build_ext=cython_build_ext,
28+
),
29+
entry_points=dict(console_scripts=[
30+
'EddyUpdate = py_eddy_tracker.update.__init__:eddy_update',
31+
]),
2932
ext_modules=[Extension("py_eddy_tracker.tools",
3033
["src/py_eddy_tracker/tools.pyx"],
3134
include_dirs=[numpy.get_include()])],
35+
package_data={'py_eddy_tracker.featured_tracking': ['*.nc', ]},
3236
setup_requires=[
3337
'numpy>=1.8'],
3438
install_requires=[
3539
'numpy>=1.9',
3640
# Bug with 1.5.1 (slow memory leak)
37-
'matplotlib==1.4.3',
41+
'matplotlib>=2.0.0',
3842
'scipy>=0.15.1',
3943
'netCDF4>=1.1.0',
4044
'shapely',

0 commit comments

Comments
 (0)