diff options
-rw-r--r-- | AUTHORS | 8 | ||||
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 11 insertions, 1 deletions
@@ -0,0 +1,8 @@ +The PRIMARY AUTHORS are (and/or have been): + + * Markus Holtermann + * Christian Struck + +And here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS: + + * Jannis Leidel diff --git a/MANIFEST.in b/MANIFEST.in index 8e5e8a9..c93abb9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ +include AUTHORS +include LICENSE include requirements.txt include README.rst @@ -22,7 +22,7 @@ setup( author='Christian Struck, Markus Holtermann', author_email='', license='BSD', - packages=find_packages(exclude=['example', 'tests']), + packages=find_packages(exclude=['tests']), include_package_data=True, install_requires=requirements, test_suite="tests", |