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
This commit is contained in:
Davanum Srinivas 2017-10-18 17:30:42 -04:00
parent 8665a7621c
commit 480723fe2d

9
MANIFEST.in Normal file
View File

@ -0,0 +1,9 @@
include LICENSE
include OWNERS
include *.md
include *.txt
include *.ini
exclude .gitignore
exclude .gitreview
global-exclude *.pyc