forked from spotDL/spotify-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
75 lines (67 loc) · 1.64 KB
/
setup.cfg
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
version = 3.9.6
name = spotdl
url = https://github.com/spotDL/spotify-downloader
download_url = https://pypi.org/project/spotdl/
author = spotDL Team
author_email = spotdladmins@googlegroups.com
license = MIT
description = Download your Spotify playlists and songs along with album art and metadata
long_description = file:README.md
long_description_content_type = text/markdown
keywords = spotify downloader download music youtube mp3 album metadata
classifiers =
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Multimedia
Topic :: Multimedia :: Sound/Audio
Topic :: Utilities
[options]
include_package_data = true
install_requires =
spotipy >= 2.19.0
pytube >= 11.0.0
rich
rapidfuzz
mutagen
ytmusicapi
yt-dlp
beautifulsoup4
requests
Unidecode
setuptools
python_requires = >=3.6.1
packages = find:
[options.extras_require]
test =
pytest >= 6.0
pytest-mock >= 3.3.1
pytest-vcr >= 1.0.2
pyfakefs >= 4.3.0
pytest-cov >= 2.10.1
pytest-subprocess
dev =
tox
mypy
flake8
types-setuptools
types-requests
[options.entry_points]
console_scripts=
spotdl = spotdl:console_entry_point
[options.packages.find]
exclude =
termux*
tests*
[mypy]
ignore_missing_imports = True
[flake8]
max-line-length = 100
ignore = E301,W605