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:
Add version Tag
git tag -a v#.#.# git push --tags
Ensure all test via
tox
passGenerate and upload the package
python setup.py bdist_wheel upload -r pypi