-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
26 lines (25 loc) · 952 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
from setuptools import setup, find_packages
setup(
name='django-queryset-csv',
version='1.1.0',
description='A simple python module for writing querysets to csv',
long_description=open('README.rst').read(),
author='Steve Lamb',
author_email='[email protected]',
maintainer='Michael Maurizi',
maintainer_email='[email protected]',
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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Environment :: Plugins",
"Framework :: Django",
"License :: OSI Approved :: GNU General Public License (GPL)"
],
install_requires=['django>=1.8', 'unicodecsv>=0.14.1'],
)