forked from GeoNode/django-osgeo-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.28 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 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='garnertb@prominentedge.com',
url='https://github.com/prominentedge/django-osgeo-importer',
packages=find_packages(exclude=('tests*',)),
package_data = {
'osgeo_importer': [
'locale/*/LC_MESSAGES/*',
],
},
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: SOME LICENSE',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
],
install_requires=[
'django-tastypie==0.11.0',
],
include_package_data=True,
zip_safe=False,
)