summaryrefslogtreecommitdiffstats
path: root/Doc/distributing/index.rst
diff options
context:
space:
mode:
authorBrian Rutledge <brian@bhrutledge.com>2020-06-20 17:10:25 (GMT)
committerGitHub <noreply@github.com>2020-06-20 17:10:25 (GMT)
commitaf157fad286c00ff204e86d8556648cbb53ba99e (patch)
tree4b504eb233cb614788e934c1bb0370bd107321dd /Doc/distributing/index.rst
parent861efc6e8fe7f030b1e193989b13287b31385939 (diff)
downloadcpython-af157fad286c00ff204e86d8556648cbb53ba99e.zip
cpython-af157fad286c00ff204e86d8556648cbb53ba99e.tar.gz
cpython-af157fad286c00ff204e86d8556648cbb53ba99e.tar.bz2
Add link to .pypirc specification (GH-20680)
Related to https://github.com/pypa/twine/issues/638 and https://github.com/pypa/packaging.python.org/issues/730, I wrote a spec based on the one that was removed in https://github.com/python/cpython/pull/13087. However, a Google search for "pypirc" turned up at least one [blog post](https://truveris.github.io/articles/configuring-pypirc/) that links to https://docs.python.org/3/distutils/packageindex.html#the-pypirc-file, which now just links to this document. So, I thought a link to the spec would be handy. Automerge-Triggered-By: @jaraco
Diffstat (limited to 'Doc/distributing/index.rst')
-rw-r--r--Doc/distributing/index.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/distributing/index.rst b/Doc/distributing/index.rst
index 5f7b3bb..0237994 100644
--- a/Doc/distributing/index.rst
+++ b/Doc/distributing/index.rst
@@ -128,6 +128,7 @@ involved in creating and publishing a project:
* `Project structure`_
* `Building and packaging the project`_
* `Uploading the project to the Python Packaging Index`_
+* `The .pypirc file`_
.. _Project structure: \
https://packaging.python.org/tutorials/distributing-packages/
@@ -135,6 +136,8 @@ involved in creating and publishing a project:
https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
.. _Uploading the project to the Python Packaging Index: \
https://packaging.python.org/tutorials/distributing-packages/#uploading-your-project-to-pypi
+.. _The .pypirc file: \
+ https://packaging.python.org/specifications/pypirc/
How do I...?