diff options
author | Fred Drake <fdrake@acm.org> | 2005-03-22 04:09:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2005-03-22 04:09:37 (GMT) |
commit | ae22bbed81cfe74eb2d3da810906cb8340edb642 (patch) | |
tree | 2ac51b3f443612bdd681e2229b8a30a31e5c0d28 | |
parent | 7355e8133d3b03b11fd3d3b1d83e071c5fd9873e (diff) | |
download | cpython-ae22bbed81cfe74eb2d3da810906cb8340edb642.zip cpython-ae22bbed81cfe74eb2d3da810906cb8340edb642.tar.gz cpython-ae22bbed81cfe74eb2d3da810906cb8340edb642.tar.bz2 |
- fix markup bugs
- more consistent markup
- elaborate a couple of points
-rw-r--r-- | Doc/dist/dist.tex | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 1684265..35478e9 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -1738,14 +1738,20 @@ the package data if the author of the package wishes to. The distutils command \command{upload} pushes the distribution files to PyPI. The command is invokes immediately after building one or more distribution -files, e.g. as +files. For example, the command \begin{verbatim} python setup.py sdist bdist_wininst upload \end{verbatim} +will cause the source distribution and the Windows installer to be +uploaded to PyPI. Note that these will be uploaded even if they are +built using an earlier invocation of \file{setup.py}, but that only +distributions named on the command line for the invocation including +the \command{upload} command are uploaded. + The \command{upload} command uses the username and password stored in -in the file \file{$HOME/.pypirc}, see \ref{pypirc}. +in the file \file{\$HOME/.pypirc}, see section~\ref{pypirc}. \chapter{Examples} \label{examples} @@ -2087,9 +2093,12 @@ or \class{buildcmds.bdist_openpkg.bdist_openpkg}. \section{Adding new distribution types} -Commands that create distributions (i.e. files in the dist directory) -need to add (command, filename) pairs to \var{self.distribution.dist_files} -so that \command{upload} can upload it to PyPI. +Commands that create distributions (files in the \file{dist/} +directory) need to add \code{(\var{command}, \var{filename})} pairs to +\code{self.distribution.dist_files} so that \command{upload} can +upload it to PyPI. The \var{filename} in the pair contains no path +information, only the name of the file itself. In dry-run mode, pairs +should still be added to represent what would have been created. \chapter{Command Reference} \label{reference} |