-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.14 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
#!/usr/bin/env python
try:
from setuptools import setup, Extension
except:
from distutils.core import setup, Extension
setup(name='SkyLinesPolyEncode',
version='0.1.3',
description="SkyLines Polyline encoding (C++ extension)",
long_description="Multidimensional encoding of line & polygon coordinates for use in SkyLines. Based on cGPolyEncode by Robert Coup <[email protected]>",
author='Tobias Lohner',
author_email='[email protected]',
provides=['skylinespolyencode'],
keywords='gis,geospatial,google-maps,gmaps,mapping',
url='http://github.com/TobiasLohner/SkyLinesPolyEncode/',
ext_modules=[
Extension("skylinespolyencode", ["skylinespolyencode_py.cpp", "SkyLinesPolyEncoder.cpp"]),
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: C++',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities'],
)