From 1e70870356ab9540b73de4b1da970d8acf8303fb Mon Sep 17 00:00:00 2001 From: Jonas Geduldig Date: Sun, 17 Nov 2013 22:49:02 -0500 Subject: [PATCH] Added pygeocoder to setup.py --- TwitterGeoPics/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TwitterGeoPics/__init__.py b/TwitterGeoPics/__init__.py index 872c190..76d3aad 100644 --- a/TwitterGeoPics/__init__.py +++ b/TwitterGeoPics/__init__.py @@ -1,5 +1,5 @@ __title__ = 'TwitterGeoPics' -__version__ = '2.2.0' +__version__ = '2.2.1' __author__ = 'Jonas Geduldig' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Jonas Geduldig' diff --git a/setup.py b/setup.py index 1b21861..78080a0 100644 --- a/setup.py +++ b/setup.py @@ -24,5 +24,5 @@ def read(*filenames, **kwargs): keywords='twitter, geocode', description='Command line scripts for geocoding tweets from twitter.com and for downloading embedded photos.', long_description=read('README.txt'), - install_requires = ['TwitterAPI>=2.1', 'fridge'] + install_requires = ['TwitterAPI>=2.1', 'pygeocoder', 'fridge'] )