Initial implementation

This commit is contained in:
2026-08-26 15:13:41 +01:00
commit 7e28074eff
18 changed files with 2306 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[project]
name = "rex"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Hector van der Aa", email = "hector@h3cx.dev" }
]
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.141.1",
"httpx>=0.28.1",
"pydantic>=2.13.4",
"textual>=6.1.0",
"uvicorn>=0.52.4",
"websockets>=17.0.1",
]
[project.scripts]
rex = "rex:main"
[build-system]
requires = ["uv_build>=0.12.5,<0.13.0"]
build-backend = "uv_build"