Publish python packages to PyPI
This is a TL;DR, see the references for more info.
pip install twine
python setup.py sdist bdist_wheel
tar tzf /dist/package-name-0.0.1.tar.gz
twine check dist/*
twine upload dist/*
This is a TL;DR, see the references for more info.
pip install twine
python setup.py sdist bdist_wheel
tar tzf /dist/package-name-0.0.1.tar.gz
twine check dist/*
twine upload dist/*