From f0fa556841d119756065a3e6e507a5d66777f04b Mon Sep 17 00:00:00 2001 From: Kubilay Kocak Date: Fri, 6 Sep 2019 14:12:42 +0000 Subject: [PATCH] Include more files in sdist (#7) tests and test-related files are useful for downstream OS packagers and users that want to QA python packages. Accordingly, include the tests directory and .travis.yml, which includes the correct test invocation command, in the PyPI sdist via MANIFEST.in. In addition, it is best practice to include a LICENSE file with source distributions, so accordingly, include it in MANIFEST.in --- MANIFEST.in | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..666be63 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +graft tests +include .travis.yml +include LICENSE