Add the following to ~/.pypirc
file
[distutils]
index-servers =
pypi
[pypi]
repository = https://pypi.python.org/pypi
username = username
password = xxxyyyzzz
When releasing a new version, the following needs to occur:
Ensure all test via
tox
passAdd version Tag
git tag -a v#.#.# git push --tags
Generate and upload the package
python3 setup.py bdist_wheel upload -r pypi