📝How-to: Publish Python package

tags

#how-to Python

rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*
# local is repo name
twine upload -r local dist/*

Backlinks