forked from azavea/django-queryset-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 881 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
author = 'Steve Lamb'
author_email = 'slamb@azavea.com'
setup(
name='django-queryset-csv',
version='0.3.3',
description='A simple python module for writing querysets to csv',
long_description=open('README.rst').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",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Environment :: Plugins",
"Framework :: Django",
"License :: OSI Approved :: GNU General Public License (GPL)"
],
install_requires=['django>=1.5', 'unicodecsv>=0.14.1'],
)