Forráskód Böngészése

Skips the __pycache__ directories (pyc/pyo for python2.7 / 3.x)

Xavier Ordoquy 10 éve
szülő
commit
263762305d
1 módosított fájl, 5 hozzáadás és 1 törlés
  1. 5 1
      setup.py

+ 5 - 1
setup.py

@@ -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: