Skip to content

Commit 5bd9b09

Browse files
author
Steve Lamb
committed
Merge pull request #34 from steventlamb/release/0_2_0
Release version 0.2.0
2 parents 645d118 + 31ea94b commit 5bd9b09

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include COPYING LICENSE README.md

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
from setuptools import setup, find_packages
22

3+
author = 'Steve Lamb'
4+
author_email = 'slamb@azavea.com'
5+
36
setup(
47
name='django-queryset-csv',
5-
version='0.1.1',
8+
version='0.2.0',
69
description='A simple python module for writing querysets to csv',
7-
author='Steve Lamb',
8-
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,
915
url='http://github.com/azavea/django-queryset-csv',
1016
packages=find_packages(exclude=('test_app',)),
1117
keywords="django queryset csv",

0 commit comments

Comments
 (0)