forked from slawek87/geolocation-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.13 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
# -*- coding: utf-8 -*-
from distutils.core import setup
try:
with open('README.md', 'r') as f:
readme = f.read()
with open('LICENSE.txt', 'r') as f:
license_ = f.read()
except:
readme = ''
license_ = ''
setup(
name='geolocation-python',
version='0.2.2',
packages=['geolocation', 'geolocation.distance_matrix', 'geolocation.geocode'],
url='',
download_url='https://github.com/slawek87/geolocation-python/',
license=license_,
author=u'Sławomir Kabik',
author_email='[email protected]',
description='Geolocation is a simple and clever application which uses google maps api. '
'This application allows you to easily and quickly get information about given localisation. '
'Application returns such information as: country, city, route/street, street number, lat and lng,'
'travel distance and time for a matrix of origins and destinations.',
long_description=readme,
keywords=['Python Google Maps Api', 'Google lat', 'Google lng', 'Python Google Maps', 'Google Maps Distance'],
install_requires=['setuptools', 'requests'],
)