forked from geodesign/django-raster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.37 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
from setuptools import find_packages, setup
setup(
name='django-raster',
version='0.5',
url='https://github.com/geodesign/django-raster',
author='Daniel Wiesmann',
author_email='[email protected]',
description='Raster file implementation for Django based on PostGis',
license='BSD',
packages=find_packages(exclude=('tests', )),
include_package_data=True,
install_requires=[
'Django>=1.9',
'numpy>=1.9.1',
'celery>=4.0.2',
'Pillow>=4.1.1',
'django-colorful>=1.0.1',
'pyparsing>=2.2.0',
'boto3>=1.4.7',
],
keywords=['django', 'raster', 'gis', 'gdal', 'celery', 'geo', 'spatial'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Scientific/Engineering :: GIS',
]
)