From 6d107963a03da7205145ff0aaa085800cda28142 Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Mon, 25 Apr 2016 19:25:36 +0200 Subject: [PATCH] Be more precise about recursive includes. The tarball on PyPI has some artifacts in the `tests` folder right now (`.pyc` files) which should not be shipped. Changing the directives to be more precise as to what gets includes fixes this for future release tarballs. --- MANIFEST.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 2baa37d7b..d5a19b568 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include AUTHORS CHANGELOG.rst LICENSE README.rst requirements*.txt -recursive-include tests * -recursive-include docs * +recursive-include tests *.py +recursive-include docs Makefile conf.py make.bat *.rst