소스 검색

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__