@@ -257,9 +257,9 @@ Running the ``check`` command will display some warnings::
257257 (maintainer and maintainer_email) must be supplied
258258
259259
260- If you use the reStructuredText syntax in the `long_description ` field and
260+ If you use the reStructuredText syntax in the `` long_description ` ` field and
261261`docutils <http://docutils.sourceforge.net/ >`_ is installed you can check if
262- the syntax is fine with the ``check `` command, using the `restructuredtext `
262+ the syntax is fine with the ``check `` command, using the `` restructuredtext ` `
263263option.
264264
265265For example, if the :file: `setup.py ` script is changed like this::
@@ -278,7 +278,7 @@ For example, if the :file:`setup.py` script is changed like this::
278278 url='http://example.com', long_description=desc)
279279
280280Where the long description is broken, ``check `` will be able to detect it
281- by using the `docutils ` parser::
281+ by using the :mod: `docutils ` parser::
282282
283283 $ pythontrunk setup.py check --restructuredtext
284284 running check
@@ -293,20 +293,20 @@ Reading the metadata
293293
294294The :func: `distutils.core.setup ` function provides a command-line interface
295295that allows you to query the metadata fields of a project through the
296- `setup.py ` script of a given project::
296+ :file: `setup.py ` script of a given project::
297297
298298 $ python setup.py --name
299299 distribute
300300
301- This call reads the `name ` metadata by running the
301+ This call reads the `` name ` ` metadata by running the
302302:func: `distutils.core.setup ` function. Although, when a source or binary
303303distribution is created with Distutils, the metadata fields are written
304304in a static file called :file: `PKG-INFO `. When a Distutils-based project is
305305installed in Python, the :file: `PKG-INFO ` file is copied alongside the modules
306306and packages of the distribution under :file: `NAME-VERSION-pyX.X.egg-info `,
307- where `NAME ` is the name of the project, `VERSION ` its version as defined
308- in the Metadata, and `pyX.X ` the major and minor version of Python like
309- `2.7 ` or `3.2 `.
307+ where `` NAME `` is the name of the project, `` VERSION ` ` its version as defined
308+ in the Metadata, and `` pyX.X ` ` the major and minor version of Python like
309+ `` 2.7 `` or `` 3.2 ` `.
310310
311311You can read back this static file, by using the
312312:class: `distutils.dist.DistributionMetadata ` class and its
0 commit comments