spotipy/setup.py

14 lines
382 B
Python
Raw Normal View History

2014-04-05 13:12:01 +00:00
from setuptools import setup
setup(
2014-06-16 17:38:47 +00:00
name='SpotipyWebApi',
version='1.40',
2014-04-05 18:52:57 +00:00
description='simple client for the Spotify Web API',
2014-04-05 13:12:01 +00:00
author="@plamere",
author_email="paul@echonest.com",
url='http://github.com/plamere/spotipy',
install_requires=['requests>=1.0', 'simplejson>=3.5.2'],
2014-06-16 17:30:57 +00:00
license='LICENSE.txt',
py_modules=['spotipy', 'spotipy.oauth2'],)