diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-11 12:11:55 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-11 12:11:55 (GMT) |
commit | d0cf0635b3f73742a91a100b1f19b8f9edf7be9a (patch) | |
tree | 6c4853bfa7ccb6eaf63fbfe3a41460ac6187bfe5 /Doc/library/distribution.rst | |
parent | 020af2a2bc4708215360a3793b5a1790e15d05dd (diff) | |
download | cpython-d0cf0635b3f73742a91a100b1f19b8f9edf7be9a.zip cpython-d0cf0635b3f73742a91a100b1f19b8f9edf7be9a.tar.gz cpython-d0cf0635b3f73742a91a100b1f19b8f9edf7be9a.tar.bz2 |
Close #19406: Initial implementation of ensurepip
Patch by Donald Stufft and Nick Coghlan
Diffstat (limited to 'Doc/library/distribution.rst')
-rw-r--r-- | Doc/library/distribution.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/library/distribution.rst b/Doc/library/distribution.rst new file mode 100644 index 0000000..fb3f5df --- /dev/null +++ b/Doc/library/distribution.rst @@ -0,0 +1,14 @@ +*********************************** +Software Packaging and Distribution +*********************************** + +These libraries help you with publishing and installing Python software. +While these modules are designed to work in conjunction with the +`Python Package Index <https://pypi.python.org>`__, they can also be used +with a local index server, or without any index server at all. + +.. toctree:: + + distutils.rst + ensurepip.rst + venv.rst |