forked from GeoNode/django-osgeo-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.15 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
from setuptools import setup, find_packages
import osgeo_importer
with open('README.md') as f:
readme = f.read()
setup(
name='django-osgeo-importer',
version='.'.join(str(i) for i in osgeo_importer.__version__),
description='django-osgeo-importer is a reusable Django application for '
'inspecting geospatial data using GDAL/OGR and importing the '
'data into an application.',
long_description=readme,
author='Tyler Garner',
author_email='[email protected]',
maintainer='django-osgeo-importer contributors',
url='https://github.com/GeoNode/django-osgeo-importer',
# see MANIFEST for packaging exclusions
packages=find_packages('.'),
license='GPLv3+',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later'
' (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Framework :: Django :: 1.8',
],
include_package_data=True,
zip_safe=False,
)