📝How-to: Publish Python package
rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*
# local is repo name
twine upload -r local dist/*
Backlinks
- 📝 Python
rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*
# local is repo name
twine upload -r local dist/*