spotipy/setup.py
Takehisa Oyama 7d23fc3277
Add RedisCacheHandler (#747)
* add RedisCacheHandler

* add the explanation for customized chache handlers

* update the dependency and chengelog
2021-11-22 19:31:58 +00:00

38 lines
782 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.19.0',
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=[
'redis>=3.5.3',
'requests>=2.25.0',
'six>=1.15.0',
'urllib3>=1.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,
license='MIT',
packages=['spotipy'])