diff options
author | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
commit | 96f2536dcc1056dffa72f0877f1683b6633440f0 (patch) | |
tree | 19b9e79451aca738677aa72cf67a444a97be61c6 /setuptools/__init__.py | |
parent | def1a4f577242d326a93268c2851e2b3f48c5329 (diff) | |
download | external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.gz external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.bz2 external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.zip |
bootstrapping.py -> distribute_setup.py
--HG--
branch : distribute
extra : rebase_source : 4e57a0bc1a8bea73bc8ed0f102d0e0907c554235
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 58e46d4f..aaf634da 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 bootstrapping script for instance, will check if this +# The distribute_setup 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', 'bootstrapping']: + for pat in list(exclude)+['ez_setup', 'distribute_setup']: from fnmatch import fnmatchcase out = [item for item in out if not fnmatchcase(item,pat)] return out |