-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
28 lines (26 loc) · 1.07 KB
/
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
28
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='django-spillway',
version='0.8.1',
description='Geodata extensions for Django REST Framework',
long_description=open('README.rst').read(),
author='Brian Galey',
author_email='[email protected]',
url='https://github.com/bkg/django-spillway',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=['django', 'djangorestframework>=3.1.0', 'greenwich>=0.3'],
extras_require={'mapnik': ['Mapnik>=2.0']},
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='runtests.runtests')