-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
43 lines (39 loc) · 1.43 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-raster-aggregation',
version='0.2',
packages=['raster_aggregation', 'raster_aggregation.migrations'],
include_package_data=True,
license='BSD',
description='Zonal aggregation functionality for django-raster',
long_description=README,
url='https://github.com/geodesign/django-raster-aggregation',
author='Daniel Wiesmann',
author_email='[email protected]',
install_requires=[
'Django>=2.0',
'celery>=4.0.2',
'django-raster>=0.5',
'django-filter>=1.0.4',
'djangorestframework>=3.5.4',
'djangorestframework-gis>=0.11',
'drf-extensions>=0.3.1',
'mapbox-vector-tile>=1.2.0',
],
keywords=['django', 'raster', 'gis', 'gdal', 'celery', 'geo', 'spatial'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)