-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
35 lines (34 loc) · 1.1 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
from setuptools import setup
setup(
name='django-wms',
version='0.1.12',
packages=['wms'],
include_package_data=True,
license='BSD',
description='Mapscript based WMS framework for GeoDjango',
url='https://github.com/geodesign/django-wms',
author='Daniel Wiesmann',
author_email='[email protected]',
install_requires=[
'Django>=1.9',
],
keywords=[
'django', 'gis', 'mapserver', 'mapscript', 'wms',
'tms', 'web map service', 'tile map service',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Scientific/Engineering :: GIS',
]
)