-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·50 lines (46 loc) · 1.73 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
44
45
46
47
48
49
50
import os
from setuptools import find_packages, setup
import sys
if sys.version_info[0] < 3:
print ("This package does not support Python 2.")
sys.exit(1)
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-warp',
version='0.6',
packages=find_packages(),
install_requires=[
'Django>=1.11',
'psycopg2',
'django-cors-headers',
'django-http-proxy',
'python-slugify',
'django-imagekit',
#'django-raster>=0.6',
'requests',
'GDAL>=2.1.0'
],
include_package_data=True,
license='GNU General Public License v3 (GPLv3)', # example license
description='A Django app for easy/collaborative georeferencing of raster datasets. Acts as web interface to GDAL/OGR',
url='https://github.com/enricofer/django-warp',
author='Enrico Ferreguti',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0', # replace "X.Y" as appropriate
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)