diff --git a/CHANGES.txt b/CHANGES.txt index f656ff6..c531615 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -25,3 +25,5 @@ v2.1.1, 11 Oct 2013 -- Prints GEOCODE with place and lat,lng. v2.2.0, 15 Oct 2013 -- Combined scripts. v2.2.1, 27 Dec 2013 -- Added pygeocoder to setup.py. + +v2.2.3, 27 Oct 2015 -- Added tzwhere to setup.py. diff --git a/TwitterGeoPics/__init__.py b/TwitterGeoPics/__init__.py index acb0870..2a081dc 100644 --- a/TwitterGeoPics/__init__.py +++ b/TwitterGeoPics/__init__.py @@ -1,5 +1,5 @@ __title__ = 'TwitterGeoPics' -__version__ = '2.2.2' +__version__ = '2.2.3' __author__ = 'Jonas Geduldig' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Jonas Geduldig' diff --git a/setup.py b/setup.py index 78080a0..af3f141 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', 'pygeocoder', 'fridge'] + install_requires = ['TwitterAPI>=2.1', 'pygeocoder', 'fridge', 'tzwhere'] )