forked from rcoup/py-gpolyencode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 950 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, Extension
except:
from distutils.core import setup, Extension
setup(
name="py-gpolyencode",
version="0.2.2.dev0",
description="Google Maps Polyline encoding (pure Python)",
long_description="Encode line & polygon coordinates for use in Google Maps.",
author="Robert Coup",
author_email="[email protected]",
provides=["gpolyencode"],
keywords="gis,geospatial,google-maps,gmaps,mapping",
url="http://code.google.com/p/py-gpolyencode/",
py_modules=["gpolyencode"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
)