diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c0bffea --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include COPYING LICENSE README.md \ No newline at end of file diff --git a/setup.py b/setup.py index c981187..f6c742f 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,17 @@ from setuptools import setup, find_packages +author = 'Steve Lamb' +author_email = 'slamb@azavea.com' + setup( name='django-queryset-csv', - version='0.1.1', + version='0.1.2', description='A simple python module for writing querysets to csv', - author='Steve Lamb', - author_email='slamb@azavea.com', + long_description=open('README.md').read(), + author=author, + author_email=author_email, + maintainer=author, + maintainer_email=author_email, url='http://github.com/azavea/django-queryset-csv', packages=find_packages(exclude=('test_app',)), keywords="django queryset csv",