From c5984b5dcd55d4ffe22c4d53f413cf3e32506d97 Mon Sep 17 00:00:00 2001 From: Pete Zaitcev Date: Fri, 9 Jan 2015 21:56:59 -0700 Subject: [PATCH] Add MANIFEST.in Current tree does not collect everything available when the usual "python setup.py sdist" is run. Resulting tarball works, but cannot be used to build complete RPMs. Strangely puzzling, adding include_package_data=True does not work. It simply has no effect. So, we add MANIFEST.in like in the old days. Since we're at it, add everything else missing, like the README.md. Stock setuptools in F21 only collects README.txt, but not Markdown. Change-Id: I9fb89429a8b690fc7e8e128962aeb991a1f760d9 --- MANIFEST.in | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..fd2392e --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include README.md +include makerpm.sh pkgconfig.py +graft doc +graft etc