From b93a40d958ab3c9fb63259fd788781bb17940886 Mon Sep 17 00:00:00 2001 From: Guy Rozendorn Date: Wed, 13 Apr 2016 16:18:00 +0300 Subject: [PATCH] MANIFEST.in should include itself so source distributions could be built from source distributions We're using stdb (https://pypi.python.org/pypi/stdeb/0.8.5) to build debian packages from the source distribution of contextlib2, and it fails becasue MANIFEST.in is not in the tgz This --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9e664ba..8d19207 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ -include *.py *.txt *.rst +include *.py *.txt *.rst MANIFEST.in recursive-include docs *.rst *.py make.bat Makefile