mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
* Bump requests from 2.3.0 to 2.20.0 Bumps [requests](https://github.com/requests/requests) from 2.3.0 to 2.20.0. - [Release notes](https://github.com/requests/requests/releases) - [Changelog](https://github.com/psf/requests/blob/master/HISTORY.md) - [Commits](https://github.com/requests/requests/compare/v2.3.0...v2.20.0) Signed-off-by: dependabot[bot] <support@github.com> * Changelog Co-authored-by: Stéphane Bruckert <stephane.bruckert@gmail.com>
19 lines
465 B
Python
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.1',
|
|
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'])
|