22 lines
362 B
TOML
22 lines
362 B
TOML
[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"]
|