From 4d05888cc51dd66f124479e64d0dda8878b7822a Mon Sep 17 00:00:00 2001 From: Gorka Garcia <114485898+garciagorkauni@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:47:44 +0200 Subject: [PATCH] Add setup.py --- setup.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..44bd7bc --- /dev/null +++ b/setup.py @@ -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="robert.coup@koordinates.com", + 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", + ], +) \ No newline at end of file