from distutils.core import setup, Extension

c1=Extension('_geohash',
	sources=['src/geohash.cpp',],
	define_macros = [('PYTHON_MODULE',1),])

setup(name='python-geohash',
	version='0.8.3',
	description='Fast, accurate python geohashing library',
	author='Hiroaki Kawai',
	url='http://code.google.com/p/python-geohash/',
	py_modules=['geohash','quadtree','jpgrid','jpiarea'],
	ext_modules = [c1]
)
