Skip to content

Commit 0a5a122

Browse files
committedJun 13, 2023
setup.py
1 parent 3cb51d0 commit 0a5a122

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed
 

‎demtk.py

+1
Original file line numberDiff line numberDiff line change
@@ -331,5 +331,6 @@ def render_palette_dem(x):
331331
pal_terrain = img_terrain[0][0:256]
332332
return pal_terrain[qauto(x,p=0.1)]
333333

334+
version = 1
334335

335336
# vim:set tw=80 filetype=python ts=8 sw=8 sts=0 noexpandtab:

‎pip/INSTALL

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

‎pip/demtk.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../demtk.py

‎pip/setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
)

0 commit comments

Comments
 (0)
Please sign in to comment.