dh2loop icon indicating copy to clipboard operation
dh2loop copied to clipboard

Add pip install

Open Leguark opened this issue 5 years ago • 0 comments

set version number in setup.py, both for version and in download_url, also in the config file of the documentation

version='X.X', download_url='https://github.com/cgre-aachen/gempy/archive/X.X.tar.gz',

add new tag

$ git tag X.X -m "Add X.X tag for PyPI"

push git tag

$ git push --tags origin master

upload newest version to PyPi

First create the dist

python3 setup.py sdist bdist_wheel

Second upload the distributions

twine upload dist/*

Leguark avatar Mar 20 '20 02:03 Leguark