-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 755 Bytes
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
[project]
name = "lyriks"
version = "0.5.7"
description = "A command line tool to fetch lyrics from Genie"
authors = [
{ name = "Maxr1998", email = "max@maxr1998.de" },
]
license = "GPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"click>=8.0.0",
"httpx[http2]>=0.22.0",
"lxml>=4.8.0",
"mutagen>=1.45",
"pyqqmusicdes>=0.1.0",
"rich>=11.2.0",
"stamina>=25.2.0",
"trio>=0.19.0",
]
scripts = { "lyriks" = "lyriks.cli:cli" }
[dependency-groups]
dev = [
"types-lxml>=2026.1.1",
]
[tool.uv]
package = true
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "preserve"