forked from spotipy-dev/spotipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 765 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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.18.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=[
'requests>=2.25.0',
'six>=1.15.0',
'urllib3>=1.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,
license='LICENSE.md',
packages=['spotipy'])