diff --git a/setup.py b/setup.py index 93b49f0..94c54e5 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,6 @@ setup( author="@plamere", author_email="paul@echonest.com", url='http://github.com/plamere/spotipy', - install_requires=['requests>=1.0', ], + install_requires=['requests>=1.0', 'simplejson>=3.5.2'], license='LICENSE.txt', py_modules=['spotipy', 'spotipy.oauth2'],) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index b684df0..1170222 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -6,6 +6,7 @@ import base64 import requests import simplejson as json + __all__ = ['oauth2'] ''' A simple and thin Python library for the Spotify Web API