forked from scdl-org/scdl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 loc) · 1.72 KB
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
76
[project]
name = "scdl"
version = "3.0.6"
authors=[
{name = "7x11x13"}, {name = "FlyinGrub"}
]
description = "Download Music from Souncloud"
readme = "README.md"
requires-python = ">=3.10.0"
dependencies = [
"docopt-ng>=0.9.0",
"mutagen>=1.47.0",
"soundcloud-v2>=1.6.1",
"yt-dlp[curl-cffi]>=2026.6.9",
"tqdm>=4.0.0",
]
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Multimedia :: Sound/Audio",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest>=8.3.4",
"ruff>=0.8.3",
"types-requests>=2.32.0.20241016",
"typing_extensions>=4.12.2; python_version < '3.11'",
]
[project.urls]
Issues = "https://github.com/scdl-org/scdl/issues"
Repository = "https://github.com/scdl-org/scdl"
Changelog = "https://github.com/scdl-org/scdl/blob/master/CHANGELOG.md"
[project.scripts]
scdl = "scdl.scdl:_main"
[tool.setuptools.packages.find]
include = ["scdl*"]
[tool.uv]
package = true
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN",
"C90", "D",
"S", "BLE", "FBT", "A", "EM", "FA", "G", "SLF", "PTH",
"PLR", "TRY",
"PLW2901", "ANN204",
"COM812", "ISC001",
"EXE"
]
[tool.mypy]
packages = ["scdl", "tests"]
check_untyped_defs = true
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
module = "scdl.patches.*"
ignore_errors = true