Add internal KVM switch dashboard and service

This commit is contained in:
Lago
2026-03-27 14:18:36 +01:00
commit 8591e22a7b
16 changed files with 1908 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"
[project]
name = "internal-kvm-switch"
version = "0.1.0"
description = "FastAPI dashboard and polling service for Alienware-only KVM input switching"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.135.2",
"monitorcontrol>=4.2.0",
"pywin32>=311",
"uvicorn>=0.42.0",
]
[project.scripts]
kvm-switch = "main:main"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
]
[tool.uv]
package = true
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
include = ["app"]