Skip to content

Commit

Permalink
Forgot providers in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere committed Mar 2, 2015
1 parent d2c4faa commit 8eb114d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion geocoder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
__title__ = 'geocoder'
__author__ = 'Denis Carriere'
__author_email__ = 'carriere.denis@gmail.com'
__version__ = '1.2.1'
__version__ = '1.2.2'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2013-2015 Denis Carriere'

Expand Down
4 changes: 3 additions & 1 deletion geocoder/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
import os


providers = ['google', 'bing', 'osm', 'here', 'w3w', 'opencage']
providers = ['google', 'bing', 'osm', 'here', 'w3w', 'opencage', 'yandex',
'arcgis', 'tomtom', 'mapquest', 'maxmind', 'baidu', 'canadapost',
'freegeoip', 'geolytica', 'ottawa', 'geonames', 'yahoo']
methods = ['geocode', 'reverse', 'elevation', 'timezone']
outputs = ['json', 'osm', 'geojson', 'wkt']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# coding: utf8
from setuptools import setup

__version__ = '1.2.1'
__version__ = '1.2.2'
requirements_file = "requirements.txt"
requirements = [pkg.strip() for pkg in open(requirements_file).readlines()]

Expand Down

0 comments on commit 8eb114d

Please sign in to comment.