diff options
author | Fred Drake <fdrake@acm.org> | 2003-03-31 16:23:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-03-31 16:23:09 (GMT) |
commit | 2a04623ddd8c15a1d559440a5f4a63d43a3cafd7 (patch) | |
tree | 78a7466653108bb12179f3e7a1e3e53e0a05db1a | |
parent | fa86bf5b8163ea70821bbb2970767dce0116c15e (diff) | |
download | cpython-2a04623ddd8c15a1d559440a5f4a63d43a3cafd7.zip cpython-2a04623ddd8c15a1d559440a5f4a63d43a3cafd7.tar.gz cpython-2a04623ddd8c15a1d559440a5f4a63d43a3cafd7.tar.bz2 |
- add the "download_url" field to the pre-2.2.3 metadata compatibility note
- fix some markup nits
-rw-r--r-- | Doc/dist/dist.tex | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 92b8637..6f8d5c6 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -297,8 +297,8 @@ mind that the \emph{absence} of a leading slash indicates a relative path, the opposite of the MacOS convention with colons.) This, of course, only applies to pathnames given to Distutils -functions. If you, for example, use standard python functions such as -\function{glob.glob} or \function{os.listdir} to specify files, you +functions. If you, for example, use standard Python functions such as +\function{glob.glob()} or \function{os.listdir()} to specify files, you should be careful to write portable code instead of hardcoding path separators: @@ -714,42 +714,42 @@ version. This information includes: 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: + \option{classifiers} are specified as a list of strings: \begin{verbatim} setup(... - classifiers = [ - 'Development Status :: 4 - Beta', - 'Environment :: Console', - 'Environment :: Web Environment', - 'Intended Audience :: End Users/Desktop', - 'Intended Audience :: Developers', - 'Intended Audience :: System Administrators', - 'License :: OSI Approved :: Python Software Foundation License', - 'Operating System :: MacOS :: MacOS X', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: POSIX', - 'Programming Language :: Python', - 'Topic :: Communications :: Email', - 'Topic :: Office/Business', - 'Topic :: Software Development :: Bug Tracking', - ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Environment :: Web Environment', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: Python Software Foundation License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Topic :: Communications :: Email', + 'Topic :: Office/Business', + 'Topic :: Software Development :: Bug Tracking', + ], ... -) + ) \end{verbatim} +\end{description} -If you wish to include classifiers in your \file{setup.py} file and also -wish to remain backwards-compatible with Python releases prior to 2.2.3, -then you can include the following code fragment in your \file{setup.py} -before the \code{setup()} call. +If you wish to include classifiers or a download URL in your +\file{setup.py} file and also wish to remain backwards-compatible with +Python releases prior to 2.2.3, then you can include the following +code fragment in your \file{setup.py} before the \code{setup()} call: \begin{verbatim} # patch distutils if it can't cope with the "classifiers" keyword if sys.version < '2.2.3': from distutils.dist import DistributionMetadata DistributionMetadata.classifiers = None + DistributionMetadata.download_url = None \end{verbatim} |