initial implementation

This commit is contained in:
2025-04-03 08:05:44 -04:00
commit 7b0de170a7
8 changed files with 195 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "rproxy"
dynamic = ["version"]
dependencies = [
"pyyaml",
"pydantic",
]
[project.scripts]
rproxy = "rproxy.__main__:start_reverse_proxy"
[tool.hatch.version]
path = "rproxy/__about__.py"
# [tool.hatch.build.targets.wheel]
# only-include = ["rproxy"]