-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 817 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 817 Bytes
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
from setuptools import setup, find_packages
version = '0.2dev'
setup(name='geowebdns',
version=version,
description="Geographic query web service",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='geo web',
author='Ian Bicking',
author_email='ianb@openplans.org',
url='',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
install_requires=[
'WebOb',
'GeoAlchemy',
'CmdUtils',
'httplib2',
],
tests_require=[
'WebTest',
],
entry_points="""
[console_scripts]
geowebdns-import-shp = geowebdns.importshp:main
""",
)