|
@@ -20,9 +20,13 @@ def get_package_data(package):
|
|
|
Return all files under the root package, that are not in a
|
|
|
package themselves.
|
|
|
"""
|
|
|
+ def is_python_dir(dirpath):
|
|
|
+ return (os.path.exists(os.path.join(dirpath, '__init__.py')) or
|
|
|
+ '__pycache__' in dirpath)
|
|
|
+
|
|
|
walk = [(dirpath.replace(package + os.sep, '', 1), filenames)
|
|
|
for dirpath, dirnames, filenames in os.walk(package)
|
|
|
- if not os.path.exists(os.path.join(dirpath, '__init__.py'))]
|
|
|
+ if not is_python_dir(dirpath)]
|
|
|
|
|
|
filepaths = []
|
|
|
for base, filenames in walk:
|