Skip to content
This repository was archived by the owner on Dec 20, 2022. It is now read-only.

Notes on uploading to pypi

Andrew Ang edited this page Jun 15, 2018 · 7 revisions

python packaging notes

pip install twine

python setup.py sdist bdist_wheel

# upload to test
twine upload --repository testpypi dist/*

# upload to pypi
twine upload dist/*

Clone this wiki locally