-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 714 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 714 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='googlegeocodingcli',
version='0.2',
url='https://github.com/maximilianhurl/google-geocoding-cli',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click>=6.6',
'requests>=2.11.1',
'six>=1.10.0'
],
entry_points='''
[console_scripts]
geocode=scripts.googlegeocodingcli:geocode
reverse_geocode=scripts.googlegeocodingcli:reverse_geocode
''',
author="Max Hurl",
author_email="max@maxhurl.co.uk",
description="This a CLI tool to geocode data files using the Google APIs",
license="BSD",
)