Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 299 Bytes

DEV.rst

File metadata and controls

12 lines (8 loc) · 299 Bytes

Publishing to PyPI

This assume you have twine available within your python environment and updated the package version inside setup.cfg

rm -rf dist build

python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*