From 4cbd7250a226d36291964f5b560c639b9e691b12 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 29 Mar 2023 11:10:29 +0200 Subject: [PATCH] avoid installing __pycache__ directories Signed-off-by: Min RK --- MANIFEST.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 23a2789e..cad821dd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ -recursive-include tests * -prune tests/__pycache__ +graft tests +global-exclude *.py[cod] +prune __pycache__ +prune */__pycache__