aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-02-04 16:28:39 -0500
committerGitHub <noreply@github.com>2018-02-04 16:28:39 -0500
commit5f576fddcca8b132e42e7b8f8b62c63714012934 (patch)
tree93a16cc52703a92eef47656454585dfe0e82eeeb
parent676fbed14e74ea4578997b7b27aa5ca9ba2607f5 (diff)
parent5d5861adecc1b0cb57e6d0061016b4d0e68da629 (diff)
downloadexternal_python_setuptools-5f576fddcca8b132e42e7b8f8b62c63714012934.tar.gz
external_python_setuptools-5f576fddcca8b132e42e7b8f8b62c63714012934.tar.bz2
external_python_setuptools-5f576fddcca8b132e42e7b8f8b62c63714012934.zip
Merge pull request #1258 from dylanjw/update-doc
Reflect find_packages behavior in doc
-rw-r--r--docs/setuptools.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index bea80181..cebb6268 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -437,9 +437,9 @@ such projects also need something like ``package_dir={'':'src'}`` in their
``setup()`` arguments, but that's just a normal distutils thing.)
Anyway, ``find_packages()`` walks the target directory, filtering by inclusion
-patterns, and finds Python packages (any directory). On Python 3.2 and
-earlier, packages are only recognized if they include an ``__init__.py`` file.
-Finally, exclusion patterns are applied to remove matching packages.
+patterns, and finds Python packages (any directory). Packages are only
+recognized if they include an ``__init__.py`` file. Finally, exclusion
+patterns are applied to remove matching packages.
Inclusion and exclusion patterns are package names, optionally including
wildcards. For