spotipy/setup.py
Stephane Bruckert 07505d720c Bump to 2.6.2
2020-01-16 04:14:42 +00:00

19 lines
465 B
Python

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