summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-12-21 21:51:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2019-12-21 22:25:25 -0500
commit88c70244ba0ac03a1c6fbe32838ad34b9864f24d (patch)
tree1a6ac4c57e84a575e1ccdf7254a414be27732041
parent0647cba3134605d7249ece76df8d92464ffde52a (diff)
downloadpython-setuptools-git-88c70244ba0ac03a1c6fbe32838ad34b9864f24d.tar.gz
Fix syntax in develop docs
-rw-r--r--docs/setuptools.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index e20a028f..2957be2a 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -244,8 +244,8 @@ unless you need the associated ``setuptools`` feature.
``package_data``
A dictionary mapping package names to lists of glob patterns. For a
complete description and examples, see the section below on `Including
- Data Files`_. You do not need to use this option if you are using
- ``include_package_data``, and in fact the 2 options are incompatible.
+ Data Files`_. This option is incompatible with ``include_package_data``
+ and will be ignored in that case.
``zip_safe``
A boolean (True or False) flag specifying whether the project can be
@@ -1202,7 +1202,7 @@ the quoted part.
Distributing a ``setuptools``-based project
===========================================
-Detailed instructions to distribute a setuptools project can be found at
+Detailed instructions to distribute a setuptools project can be found at
`Packaging project tutorials`_.
.. _Packaging project tutorials: https://packaging.python.org/tutorials/packaging-projects/#generating-distribution-archives
@@ -1218,7 +1218,7 @@ setup.py is located::
This will generate distribution archives in the `dist` directory.
-Before you upload the generated archives make sure you're registered on
+Before you upload the generated archives make sure you're registered on
https://test.pypi.org/account/register/. You will also need to verify your email
to be able to upload any packages.
You should install twine to be able to upload packages::