-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
53 lines (48 loc) · 1.99 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import re
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("requirements.txt", encoding="utf-8") as f:
install_requires = f.read().splitlines()
with open("spotipy2/__init__.py", encoding="utf-8") as f:
version = re.findall(r"__version__ = \"(.+)\"", f.read())[0]
setup(
name="spotipy2",
version=version,
description="The next generation Spotify Web API wrapper for Python",
long_description=readme,
long_description_content_type="text/markdown",
url="https://spotipy2.org/",
download_url="https://github.com/CyanBook/spotipy2/releases/latest",
author="CyanBook",
license="LGPLv3+",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="spotify spotipy spotipy2 api wrapper client library oauth",
project_urls={
"Tracker": "https://github.com/CyanBook/spotipy2/issues",
"Community": "https://github.com/CyanBook/spotipy2/discussions",
"Source": "https://github.com/CyanBook/spotipy2",
},
python_requires="~=3.7",
packages=find_packages(),
install_requires=install_requires,
extras_require={"cache": ["pymongo"]},
)