瀏覽代碼

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

tobitege 1 年之前
父節點
當前提交
19bc06198d
共有 1 個文件被更改,包括 5 次插入0 次删除
  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__