diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-26 18:58:46 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-26 18:58:46 (GMT) |
commit | b6b4613ae496920fbcec75a6514e1200ec783e45 (patch) | |
tree | 3164ed53c62b6d29a15bd26486d7b57ff3adb3e3 | |
parent | 10da45e2371b6e44b32105cf8a1cdb655e173ca2 (diff) | |
download | cpython-b6b4613ae496920fbcec75a6514e1200ec783e45.zip cpython-b6b4613ae496920fbcec75a6514e1200ec783e45.tar.gz cpython-b6b4613ae496920fbcec75a6514e1200ec783e45.tar.bz2 |
[Bug #693474, reported by Stuart Bishop]
Fix errors in the list of setup() arguments
-rw-r--r-- | Doc/dist/dist.tex | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 3fe128c..d640f50 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -695,13 +695,15 @@ version. This information includes: \lineiii{author_email}{email address of the package author}{(2)} \lineiii{maintainer}{package maintainer's name}{(2)} \lineiii{maintainer_email}{email address of the package maintainer}{(2)} - \lineiii{home_page}{url}{(1)} + \lineiii{url}{URL of the package's home page}{(1)} \lineiii{license}{the terms the package is released under}{} \lineiii{description}{a short, summary description of the package}{} \lineiii{long_description}{a longer description of the package}{} \lineiii{keywords}{some keywords appropriate to the package}{} - \lineiii{platform}{a list of the target platforms}{} - \lineiii{classifiers}{a list of Trove classifiers}{(3)} + \lineiii{platforms}{a list of the target platforms}{} + \lineiii{classifiers}{a list of Trove classifiers}{(3),(4)} + \lineiii{download_url}{a single URL containing the download location + for this version of the package}{(3)} \end{tableiii} \noindent Notes: @@ -709,8 +711,9 @@ version. This information includes: \item[(1)] these fields are required \item[(2)] either the author or the maintainer must be nominated \item[(3)] should not be used if your package is to be compatible with - Python versions prior to 2.2.3 or 2.3. The list is available from the - PyPI website. + Python versions prior to 2.2.3 or 2.3. +\item[(4)] The list of classifiers is available from the + PyPI website (\url{http://www.python.org/pypi}). \end{description} \option{classifiers} are specified in a python list: |