forked from nathom/streamrip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (75 loc) · 2.02 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
77
78
79
80
81
82
83
84
[project]
name = "streamrip"
version = "2.3.2"
description = "A fast, all-in-one music downloader for Qobuz, Deezer, Tidal, and SoundCloud"
readme = "README.md"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "nathom", email = "nathanthomas707@gmail.com" }
]
requires-python = ">=3.10,<4.0"
keywords = ["hi-res", "free", "music", "download"]
classifiers = [
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
dependencies = [
"mutagen>=1.45.1",
"tomlkit>=0.7.2",
"pathvalidate>=2.4.1",
"simple-term-menu>=1.2.1; sys_platform == 'darwin' or sys_platform == 'linux'",
"pick>=2; sys_platform == 'win32' or sys_platform == 'cygwin'",
"windows-curses>=2.2.0; sys_platform == 'win32' or sys_platform == 'cygwin'",
"Pillow>=9",
"deezer-py>=1.3.6",
"pycryptodomex>=3.10.1",
"appdirs>=1.4.4",
"m3u8>=0.9.0",
"aiofiles>=0.7",
"aiohttp>=3.9",
"aiolimiter>=1.1.0",
"rich>=13.6.0",
"click-help-colors>=0.9.2",
"anyio>=4.12.1",
"requests[socks]>=2.32.5",
]
[project.optional-dependencies]
ssl = ["certifi>=2025.1.31"]
dev = [
"types-click>=7.1.2",
"types-Pillow>=8.3.1",
"ruff>=0.15",
"isort>=5.9.3",
"flake8>=3.9.2",
"setuptools>=67.4.0",
"pytest>=7.4",
"pytest-mock>=3.11.1",
"pytest-asyncio>=0.21.1",
]
[project.scripts]
rip = "streamrip.rip:rip"
[project.urls]
Homepage = "https://github.com/nathom/streamrip"
Repository = "https://github.com/nathom/streamrip"
"Bug Reports" = "https://github.com/nathom/streamrip/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
log_level = "DEBUG"
asyncio_mode = "auto"
log_cli = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "ASYNC", "N", "RUF", "ERA001"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"