This commit is contained in:
2026-03-29 00:03:04 +09:00
commit d8cce8499f
62 changed files with 27628 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[project]
name = "nercone-webserver"
version = "1.0.0"
requires-python = ">=3.8"
dependencies = [
"psutil",
"httpx",
"websockets",
"fastapi",
"jinja2",
"uvicorn[standard]"
]
[project.scripts]
nercone-webserver = "nercone_webserver.__main__:main"