spotipy/setup.py
2020-01-12 13:19:40 +00:00

20 lines
488 B
Python

from setuptools import setup
desc = """### A light weight Python library for the Spotify Web API"""
setup(
name='spotipy',
version='2.5.0',
long_description=desc,
long_description_content_type='text/markdown',
author="@plamere",
author_email="paul@echonest.com",
url='http://spotipy.readthedocs.org/',
install_requires=[
'mock>=2.0.0',
'requests>=2.3.0',
'six>=1.10.0',
],
license='LICENSE.txt',
packages=['spotipy'])