forked from GeoNode/django-osgeo-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (51 loc) · 1.98 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
51
52
53
54
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]',
url='https://github.com/prominentedge/django-osgeo-importer',
packages=find_packages(exclude=('tests*',)),
package_data={
'osgeo_importer': [
'locale/*/LC_MESSAGES/*',
'templates/osgeo_importer/*',
# Include all of the static files except for the 'test' subdir.
'static/osgeo_importer/css/*',
'static/osgeo_importer/factories.js',
'static/osgeo_importer/importer.js',
'static/osgeo_importer/karma.conf.js',
'static/osgeo_importer/package.json',
'static/osgeo_importer/privacy.png',
'static/osgeo_importer/time.png',
'static/osgeo_importer/edit.png',
'static/osgeo_importer/img/*',
'static/osgeo_importer/js/*',
'static/osgeo_importer/Makefile',
'static/osgeo_importer/partials/*',
],
},
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 :: 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.12.2',
],
include_package_data=True,
zip_safe=False,
)