2014-04-05 13:12:01 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2014-08-25 21:30:31 +00:00
|
|
|
name='spotipy',
|
2017-01-05 11:23:58 +00:00
|
|
|
version='2.4.4',
|
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",
|
2014-08-25 21:47:19 +00:00
|
|
|
url='http://spotipy.readthedocs.org/',
|
2017-01-07 15:18:46 +00:00
|
|
|
install_requires=[
|
2017-01-18 22:35:23 +00:00
|
|
|
'requests>=2.3.0',
|
2017-01-07 15:18:46 +00:00
|
|
|
'six>=1.10.0',
|
|
|
|
],
|
2014-06-16 17:30:57 +00:00
|
|
|
license='LICENSE.txt',
|
2014-08-21 18:12:17 +00:00
|
|
|
packages=['spotipy'])
|