Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 822 Bytes

publish.md

File metadata and controls

34 lines (28 loc) · 822 Bytes

How to publish a library using PyPi

Sample Configuration

The content of ~/.pypirc:

[distutils]
index-servers =
  pypi
  testpypi

[pypi]
repository=https://upload.pypi.org/legacy/
username=prod.id
password=xxx

[testpypi]
repository=https://test.pypi.org/legacy/
username=test.id
password=xxx