Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 473 Bytes

File metadata and controls

25 lines (17 loc) · 473 Bytes

Deploy package

Create a distribution:

rm -rf dist/
python setup.py sdist
python setup.py bdist_wheel

Upload to Test PyPI and verify things look right:

twine upload -r testpypi dist/*

Twine will prompt for your username and password.

Upload to PyPI:

twine upload dist/*

Create a git tag and a github release associated to this distribution.