Expected configuration for .pypirc file

To run make testrelease or make release to deploy aixport to TestPyPi & PyPi you must have credentials set up.

  1. If not already, create account on PyPi

  2. If not already, create account on TestPyPi

  3. Create a configuration file in your home directory ~/.pypirc and fill it with the following information replacing <XXX> values with correct information:

[distutils]
index-servers=
pypi
testpypi

[testpypi]
repository:https://test.pypi.org/legacy/
username = __token__
password = <API TOKEN FROM PYPI>

[pypi]
username = __token__
password = <API TOKEN FROM PYPI>