aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/__init__.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 8188f125..f6536359 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -81,10 +81,20 @@ class PackageFinder(object):
for dir in dirs:
yield os.path.relpath(os.path.join(root, dir), base_path)
+ @staticmethod
+ def _suitable_dirs(base_path):
+ """
+ Return all suitable package dirs in base_path, relative to base_path
+ """
+ for root, dirs, files in os.walk(base_path, followlinks=True):
+ # Mutate dirs to trim the search:
+ dirs[:] = filterfalse(lambda n: '.' in n, dirs)
+ for dir in dirs:
+ yield os.path.relpath(os.path.join(root, dir), base_path)
+
@classmethod
def _find_packages_iter(cls, base_path):
- dirs = cls._all_dirs(base_path)
- suitable = filterfalse(lambda n: '.' in n, dirs)
+ suitable = cls._suitable_dirs(base_path)
return (
path.replace(os.path.sep, '.')
for path in suitable