From e8dc253210a1ba75a89cf9ce731db04b42374b14 Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Fri, 23 Nov 2018 13:55:30 +0100 Subject: [PATCH] Be more selective when including assets in the source tarball. Using a plain wildcard `*` also includes build-artifacts like `.pyc` files in the source tarball. This is then flagged by systems like Debian's `lintian` which checks for clean source tarballs. --- MANIFEST.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 10c1d7a..8bd64d2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,7 @@ include README.md include LICENSE include MANIFEST.in include pytest.ini -recursive-include docs * -recursive-include recurrence/static * -recursive-include recurrence/locale * -recursive-include tests * +recursive-include docs Makefile make.bat *.rst *.py *.png +recursive-include recurrence/static *.css *.png *.js +recursive-include recurrence/locale *.mo *.po +recursive-include tests *.py