spotipy/setup.py
Stéphane Bruckert 1ce8c4f06b
RTD theme fix (#1122)
* pip sphinx-rtd-theme

* Bump sphinx

* Add extension

* Add docs/requirements.txt

* CL
2024-05-28 09:08:23 +01:00

36 lines
807 B
Python

from setuptools import setup
with open("README.md") as f:
long_description = f.read()
test_reqs = [
'mock==2.0.0'
]
extra_reqs = {
'test': test_reqs
}
setup(
name='spotipy',
version='2.23.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/',
project_urls={
'Source': 'https://github.com/plamere/spotipy',
},
python_requires='>3.8',
install_requires=[
"redis>=3.5.3",
"requests>=2.25.0",
"urllib3>=1.26.0"
],
tests_require=test_reqs,
extras_require=extra_reqs,
license='MIT',
packages=['spotipy'])