From 480723fe2d691ade0f3018c41c56edcfccf715e0 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Wed, 18 Oct 2017 17:30:42 -0400 Subject: [PATCH] Add files in root directory to dist By adding a MANIFEST.in, we can list the files we need to include into the tgz when we run "python setup.py sdist". With this change you should see the following files in the tgz file. LICENSE MANIFEST.in OWNERS PKG-INFO README.md RELEASE.md requirements.txt setup.cfg setup.py test-requirements.txt tox.ini --- MANIFEST.in | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000..f16bc6115a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,9 @@ +include LICENSE +include OWNERS +include *.md +include *.txt +include *.ini +exclude .gitignore +exclude .gitreview + +global-exclude *.pyc