-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
72 lines (62 loc) · 1.8 KB
/
pyproject.toml
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
[tool.poetry]
name = "spotdl"
version = "4.0.0-alpha"
description = "Download your Spotify playlists and songs along with album art and metadata"
license = "MIT"
authors = ["spotDL Team <[email protected]>"]
readme = "README.md"
repository = "https://github.com/spotDL/spotdl-v4.git"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
spotipy = "^2.19.0"
ytmusicapi = "^0.20.0"
pytube = "^11.0.2"
yt-dlp = "^2022.1.21"
mutagen = "^1.45.1"
rich = "^11.1.0"
beautifulsoup4 = "^4.10.0"
requests = "^2.27.1"
awesome-slugify = "^1.6.5"
rapidfuzz = "^1.9.1"
uvicorn = { version = "^0.17.1", optional = true }
pydantic = { version = "^1.9.0", optional = true }
fastapi = { version = "^0.73.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-mock = "^3.7.0"
pytest-vcr = "^1.0.2"
pyfakefs = "^4.5.4"
pytest-cov = "^3.0.0"
pytest-subprocess = "^1.4.0"
pytest-asyncio = "^0.17.2"
mypy = "^0.931"
pylint = "^2.12.2"
black = "^22.1.0"
mdformat-gfm = "^0.3.5"
pdoc3 = "^0.10.0"
[tool.poetry.extras]
web = ["uvicorn", "pydantic", "fastapi"]
[tool.poetry.scripts]
spotdl = "spotdl:console_entry_point"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.format]
limit-inference-results = 0
fail-under = 9
[mypy]
ignore_missing_imports = true