Ver código fonte

exclude Python cache files/folders from sdist to avoid permission errors at runtime (#3381)

tobitege 1 ano atrás
pai
commit
19bc06198d
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5 0
      MANIFEST.in

+ 5 - 0
MANIFEST.in

@@ -0,0 +1,5 @@
+# Exclude all Python bytecode files
+global-exclude *.pyc
+
+# Exclude Python cache directories
+global-exclude __pycache__