diff --git a/CHANGES.txt b/CHANGES.txt index 7c303bc..d03f579 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,4 +12,6 @@ v1.1.0, 12 Feb 2013 -- Replaced TwitterAPI with puttytat for Twitter requests. v1.1.1, 19 Feb 2013 -- Geocoder uses viewport instead of bounds. -v2.0.1, 14 Jun 2013 -- Switch to TwitterAPI and renamed to TwitterGeoPics \ No newline at end of file +v2.0.1, 14 Jun 2013 -- Switch to TwitterAPI and renamed to TwitterGeoPics + +v2.0.2, 14 Jun 2013 -- Included pygeocoder source until fixed for python 3 diff --git a/setup.py b/setup.py index d82800a..09bc825 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='TwitterGeoPics', - version='2.0.1', + version='2.0.2', author='Jonas Geduldig', author_email='boxnumber03@gmail.com', packages=['TwitterGeoPics'], @@ -12,5 +12,5 @@ license='MIT', keywords='twitter, geocode', description='Command line scripts for geocoding tweets from twitter.com and for downloading embedded photos.', - install_requires = ['TwitterAPI', 'pygeocoder', 'fridge'] + install_requires = ['TwitterAPI', 'fridge'] )