We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 645d118 + 31ea94b commit 5bd9b09Copy full SHA for 5bd9b09
MANIFEST.in
@@ -0,0 +1 @@
1
+include COPYING LICENSE README.md
setup.py
@@ -1,11 +1,17 @@
from setuptools import setup, find_packages
2
3
+author = 'Steve Lamb'
4
+author_email = 'slamb@azavea.com'
5
+
6
setup(
7
name='django-queryset-csv',
- version='0.1.1',
8
+ version='0.2.0',
9
description='A simple python module for writing querysets to csv',
- author='Steve Lamb',
- author_email='slamb@azavea.com',
10
+ long_description=open('README.md').read(),
11
+ author=author,
12
+ author_email=author_email,
13
+ maintainer=author,
14
+ maintainer_email=author_email,
15
url='http://github.com/azavea/django-queryset-csv',
16
packages=find_packages(exclude=('test_app',)),
17
keywords="django queryset csv",
0 commit comments