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

This commit is contained in:
tobitege
2024-08-14 12:54:41 +02:00
committed by GitHub
parent 92b19ed1fb
commit 19bc06198d

5
MANIFEST.in Normal file
View File

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