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