-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
35 lines (34 loc) · 1.05 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
31
32
33
34
35
from distutils.core import setup
import setuptools
setup(
name = 'proximityhash',
py_modules = ['proximityhash'],
version = '3.0.1',
description = 'Geohashes in proximity',
long_description = open('README.rst').read(),
author = 'Ashwin Nair',
author_email = '[email protected]',
license = "MIT",
url = 'https://github.com/ashwin711/proximityhash',
download_url = 'https://github.com/ashwin711/proximityhash/tarball/3.0.0',
keywords = ['geohash', 'optimizer', 'compression', 'geo', 'latitude', 'longitude', 'coordinates', 'proximity', 'circle'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
install_requires = [
'clint',
'argparse',
'georaptor>=3.0.0',
'geohash2'
],
entry_points='''
[console_scripts]
proximityhash=proximityhash:main
'''
)