Expected configuration for .pypirc file
To run make testrelease
or make release
to deploy cellmaps_utils to TestPyPi & PyPi you must have credentials set up.
If not already, create account on PyPi
If not already, create account on TestPyPi
Create a configuration file in your home directory
~/.pypirc
and fill it with the following information replacing <API TOKEN> with API TOKEN:
[distutils]
index-servers=
pypi
testpypi
[testpypi]
repository:https://test.pypi.org/legacy/
username = __token__
password = <API TOKEN>
[pypi]
username: __token__
password:<API TOKEN>