Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 322 Bytes

HOWTO.md

File metadata and controls

22 lines (16 loc) · 322 Bytes

How to

How to upload to PyPI — the Python Package Index

First, run the tests with pytest

Install build dependencies:

pip install twine build -U

With a correct $HOME/.pypirc, run:

rm -rf dist
# both sdist and wheel:
python -m build
# or only sdist:
python -m build -s
twine upload dist/*