Files
pyxray/pyproject.toml
T
2026-05-27 00:57:55 +08:00

31 lines
524 B
TOML

[project]
name = "pyxray"
version = "0.1.0"
description = "A lightweight Linux xray control plane."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"flask>=3.1.2",
"tomlkit>=0.13.3",
]
[project.scripts]
pyxray = "pyxray.cli:main"
[dependency-groups]
dev = [
"pytest>=8.4.2",
]
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.uv.build-backend]
module-name = "pyxray"
module-root = ""