Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
garciagorkauni committed Oct 22, 2024
1 parent 2061ce2 commit 4d05888
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.1",
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",
],
)

0 comments on commit 4d05888

Please sign in to comment.