Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 298 Bytes

guide-to-publish.md

File metadata and controls

18 lines (15 loc) · 298 Bytes

How to publish to PyPi

  1. If present delete dist folder

  2. If not done yet, install twine via

pip install twine
  1. Update the version number in the setup.py file.

  2. Re-create the wheels:

python setup.py sdist bdist_wheel
  1. Re-upload the new files:
twine upload dist/*