Skip to content
Leonard edited this page Nov 4, 2015 · 2 revisions

How to push to PyPI

Setup .pypirc

Update the package

Update setup.py w/ updated version then:

git tag 0.1.1 -m "Description"
git push --tags origin master

Push to PyPi

python setup.py sdist upload -r pypi

Reference:

Clone this wiki locally