File tree 4 files changed +28
-0
lines changed
4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -331,5 +331,6 @@ def render_palette_dem(x):
331
331
pal_terrain = img_terrain [0 ][0 :256 ]
332
332
return pal_terrain [qauto (x ,p = 0.1 )]
333
333
334
+ version = 1
334
335
335
336
# vim:set tw=80 filetype=python ts=8 sw=8 sts=0 noexpandtab:
Original file line number Diff line number Diff line change
1
+ To update the pypi hub, you need an account on pypi, and then run the following
2
+ commands:
3
+
4
+ # update version number on file setup.py
5
+ # update version number on file demtk.py
6
+ python setup.py sdist bdist_wheel
7
+ python -m twine upload dist/demtk-X.tar.gz
8
+ rm -rf build dist demtk.egg-info
Original file line number Diff line number Diff line change
1
+ ../ demtk .py
Original file line number Diff line number Diff line change
1
+
2
+ import setuptools
3
+
4
+ setuptools .setup (
5
+ name = "demtk" ,
6
+ version = "1" ,
7
+ author = "Enric Meinhardt-Llopis" ,
8
+ author_email = "enric.meinhardt@ens-paris-saclay.fr" ,
9
+ description = "The Definitive Interface for Image Processing Practitioners" ,
10
+ url = "https://github.com/centreborelli/demtk" ,
11
+ classifiers = [
12
+ "Operating System :: OS Independent" ,
13
+ "License :: OSI Approved :: GNU Affero General Public License v3" ,
14
+ "Topic :: Scientific/Engineering :: Image Processing" ,
15
+ "Topic :: Scientific/Engineering :: Mathematics"
16
+ ],
17
+ py_modules = ["demtk" ]
18
+ )
You can’t perform that action at this time.
0 commit comments