-
Notifications
You must be signed in to change notification settings - Fork 10
Expected configuration for .pypirc file
Chris Churas edited this page Jan 9, 2018
·
4 revisions
To run make testrelease or make release to deploy D3R to PyPI you must have credentials set up.
The easiest way to do this is to create a configuration file ~/.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 = <USERNAME>
password = <PASSWORD>
[pypi]
username:<USERNAME>
password:<PASSWORD>