From 2fe243561be8583ac382c1ee53d3ff2f7732fd05 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Tue, 12 Oct 2021 22:29:59 +1100 Subject: [PATCH] Globally exclude __pycache__ and *.pyc/pyo files --- MANIFEST.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index b73c6a52..eea6b5f8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include *.rst recursive-include pelican *.html *.css *png *.rst *.markdown *.md *.mkd *.xml *.py *.jinja2 recursive-include samples * -exclude samples/__pycache__/* include LICENSE THANKS docs/changelog.rst pyproject.toml +global-exclude __pycache__ +global-exclude *.py[co]