File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 23
23
# 'src/scripts/EddyTrackingFull'
24
24
],
25
25
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
+ ]),
29
32
ext_modules = [Extension ("py_eddy_tracker.tools" ,
30
33
["src/py_eddy_tracker/tools.pyx" ],
31
34
include_dirs = [numpy .get_include ()])],
35
+ package_data = {'py_eddy_tracker.featured_tracking' : ['*.nc' , ]},
32
36
setup_requires = [
33
37
'numpy>=1.8' ],
34
38
install_requires = [
35
39
'numpy>=1.9' ,
36
40
# Bug with 1.5.1 (slow memory leak)
37
- 'matplotlib==1.4.3 ' ,
41
+ 'matplotlib>=2.0.0 ' ,
38
42
'scipy>=0.15.1' ,
39
43
'netCDF4>=1.1.0' ,
40
44
'shapely' ,
You can’t perform that action at this time.
0 commit comments