diff options
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r-- | setuptools/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index f911ef8f..58e46d4f 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -18,7 +18,7 @@ __all__ = [ # or by the Distribute project, in case Setuptools creates # a distribution with the same version. # -# The ez_setup script for instance, will check if this +# The bootstrapping script for instance, will check if this # attribute is present to decide wether to reinstall the package _distribute = True @@ -43,7 +43,7 @@ def find_packages(where='.', exclude=()): os.path.isfile(os.path.join(fn,'__init__.py')) ): out.append(prefix+name); stack.append((fn,prefix+name+'.')) - for pat in list(exclude)+['ez_setup']: + for pat in list(exclude)+['ez_setup', 'bootstrapping']: from fnmatch import fnmatchcase out = [item for item in out if not fnmatchcase(item,pat)] return out |