aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r--setuptools/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 2523ccc7..cf0c39f2 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -116,6 +116,7 @@ class PEP420PackageFinder(PackageFinder):
def _looks_like_package(path):
return True
+
find_packages = PackageFinder.find
setup = distutils.core.setup
@@ -141,6 +142,7 @@ class Command(_Command):
vars(cmd).update(kw)
return cmd
+
# we can't patch distutils.cmd, alas
distutils.core.Command = Command