-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (90 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (90 loc) · 2 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
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "musicapi"
version = "0.5.0"
description = "Web interface for automatic music donwload and tracking."
authors = [
{ name="fsdmu"}
]
maintainers = [
{ name="fsdmu"}
]
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.12"
dependencies = [
"aiofiles>=25.1.0",
"aiohappyeyeballs>=2.6.1",
"aiohttp>=3.13.2",
"aiosignal>=1.4.0",
"annotated-doc>=0.0.4",
"annotated-types>=0.7.0",
"anyio>=4.12.0",
"attrs>=25.4.0",
"bidict>=0.23.1",
"certifi>=2025.11.12",
"charset-normalizer>=3.4.4",
"click>=8.3.1",
"docutils>=0.22.4",
"fastapi>=0.127.0",
"frozenlist>=1.8.0",
"greenlet>=3.3.0",
"h11>=0.16.0",
"httpcore>=1.0.9",
"httptools>=0.7.1",
"httpx>=0.28.1",
"idna>=3.11",
"ifaddr>=0.2.0",
"itsdangerous>=2.2.0",
"jinja2>=3.1.6",
"markdown2>=2.5.4",
"markupsafe>=3.0.3",
"multidict>=6.7.0",
"nicegui>=3.4.1",
"orjson>=3.11.5",
"propcache>=0.4.1",
"pydantic>=2.12.5",
"pydantic-core>=2.41.5",
"pygments>=2.19.2",
"python-dotenv>=1.2.1",
"python-engineio>=4.13.0",
"python-multipart>=0.0.21",
"python-socketio>=5.16.0",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"simple-websocket>=1.1.0",
"sniffio>=1.3.1",
"sqlalchemy>=2.0.45",
"starlette>=0.50.0",
"typing-inspection>=0.4.2",
"typing-extensions>=4.15.0",
"urllib3>=2.6.2",
"uvicorn>=0.40.0",
"uvloop>=0.22.1",
"watchfiles>=1.1.1",
"websockets>=15.0.1",
"wsproto>=1.3.2",
"yarl>=1.22.0",
"ytmusicapi>=1.11.4",
"mysql-connector>=2.2.9",
"psycopg2-binary>=2.9.11",
]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "D", "UP"]
ignore = [
"E203",
"D212",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.uv.workspace]
members = [
"example",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]