forked from geodesign/django-raster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.42 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
from setuptools import find_packages, setup
setup(
name='django-raster',
version='0.2',
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>=3.1.19',
'Pillow>=2.7.0',
'django-colorful>=1.0.1',
'pyparsing>=2.0.3,<=2.1.1',
],
keywords=['django', 'raster', 'gis', 'gdal', 'celery', 'geo', 'spatial'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Environment :: Web Environment',
'Framework :: Django',
'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',
]
)