forked from simplegeo/libgeohash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 754 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
from setuptools import setup, Extension
module1 = Extension(
'pylibgeohash',
include_dirs=['/usr/local/include'],
libraries=[],
library_dirs=['/usr/local/lib'],
sources=['pylibgeohash.c', 'geohash.c']
)
setup(
name='pylibgeohash',
version='0.2.2',
description='Thin wrapper around the geohash codebase',
author='Dan Bauman',
author_email='[email protected]',
url='https://github.com/bauman/libgeohash',
keywords=['geohash', 'geohashes'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
ext_modules=[module1]
)