mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
16 lines
370 B
Python
16 lines
370 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='spotipy',
|
|
version='2.4.4',
|
|
description='simple client for the Spotify Web API',
|
|
author="@plamere",
|
|
author_email="paul@echonest.com",
|
|
url='http://spotipy.readthedocs.org/',
|
|
install_requires=[
|
|
'requests>=1.0',
|
|
'six>=1.10.0',
|
|
],
|
|
license='LICENSE.txt',
|
|
packages=['spotipy'])
|