forked from spotDL/spotify-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.43 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
[metadata]
version = 3.3.2
name = spotdl
url = https://github.com/spotDL/spotify-downloader
download_url = https://pypi.org/project/spotdl/
author = spotDL Team
author_email = [email protected]
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
pytube
rich
rapidfuzz
mutagen
ytmusicapi
tqdm
python_requires = >=3.6
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
dev =
tox
mypy==0.790
flake8==3.8.4
[options.entry_points]
console_scripts=
spotdl = spotdl:console_entry_point
[mypy]
ignore_missing_imports = True
[flake8]
max-line-length = 100