diff options
author | 2012-03-02 00:23:09 +0100 | |
---|---|---|
committer | 2012-03-02 00:23:09 +0100 | |
commit | c5250879d1bcf4e1a42063e96f6ed9a477138898 (patch) | |
tree | 67c298aaaa931c215efed482eabfc6075297e41a | |
parent | Fix setup.py install (diff) | |
download | python-github3-c5250879d1bcf4e1a42063e96f6ed9a477138898.tar.xz python-github3-c5250879d1bcf4e1a42063e96f6ed9a477138898.zip |
Add Manifest
-rw-r--r-- | MANIFEST.in | 4 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..93f4e76 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include AUTHORS.rst +include README.rst +include LICENSE +include requirements.txt @@ -16,7 +16,6 @@ setup( packages=find_packages(exclude=['*tests*']), install_requires=map(str.strip, open('requirements.txt')), include_package_data = True, - package_data={'': ['README.rst', 'AUTHORS.rst', 'LICENSE']}, classifiers=( 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', |