spotipy/setup.py
Rene Nulsch 4e1e74bddc
Replace Urllib3 method_whitelist with allowed_methods (#638)
* Replace method_whitelist with allowed_methods

* Add ChangeLog Entry

* update requests to 2.25 and six to 1.15
2021-02-27 16:43:56 +01:00

36 lines
739 B
Python

from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
test_reqs = [
'mock==2.0.0'
]
doc_reqs = [
'Sphinx>=1.5.2'
]
extra_reqs = {
'doc': doc_reqs,
'test': test_reqs
}
setup(
name='spotipy',
version='2.16.1',
description='A light weight Python library for the Spotify Web API',
long_description=long_description,
long_description_content_type="text/markdown",
author="@plamere",
author_email="paul@echonest.com",
url='https://spotipy.readthedocs.org/',
install_requires=[
'requests>=2.25.0',
'six>=1.15.0',
],
tests_require=test_reqs,
extras_require=extra_reqs,
license='LICENSE.md',
packages=['spotipy'])