Skip to content
Antoine Augusti edited this page Oct 2, 2018 · 4 revisions

How to upload to pip?

# Should not be in venv (why?)
python3 setup.py sdist
python3 setup.py bdist_wheel --universal
# Go back to venv
source venv/bin/activate
twine upload dist/* --skip-existing 
Clone this wiki locally