diff options
| author | Dylan Wilson <dylanjw@protonmail.com> | 2018-01-23 15:11:14 -0800 |
|---|---|---|
| committer | Dylan Wilson <dylanjw@protonmail.com> | 2018-01-23 15:11:14 -0800 |
| commit | 5d5861adecc1b0cb57e6d0061016b4d0e68da629 (patch) | |
| tree | 6f4f7d67816060f66a4b108f30e46f6fc486379f /docs | |
| parent | 618312bec376e5c71b0938a754106973d8889417 (diff) | |
| download | external_python_setuptools-5d5861adecc1b0cb57e6d0061016b4d0e68da629.tar.gz external_python_setuptools-5d5861adecc1b0cb57e6d0061016b4d0e68da629.tar.bz2 external_python_setuptools-5d5861adecc1b0cb57e6d0061016b4d0e68da629.zip | |
Reflect find_packages behavior in doc
find_packages doesnt find PEP420 packages but
the documentation suggests that it does.
see: pypa/setuptools#97
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/setuptools.txt | 6 |
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 |
