restrict --extra standard dep to dev dependency group

This commit is contained in:
2026-04-05 00:36:21 +01:00
parent da3fb2abf8
commit b75555c11b
2 changed files with 10 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ readme = "README.md"
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
requires-python = ">=3.10"
dependencies = [
"fastapi[standard]>=0.135.3",
"fastapi>=0.135.3",
"uvicorn>=0.43.0",
"voicemeeter-api>=2.7.2",
]
@@ -26,7 +26,11 @@ requires = ["uv_build>=0.11.3,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = ["poethepoet>=0.43.0", "ruff>=0.15.9"]
dev = [
"fastapi[standard]>=0.135.3",
"poethepoet>=0.43.0",
"ruff>=0.15.9",
]
[tool.fastapi]
entrypoint = "vmr_http.app:app"