31 lines
524 B
TOML
31 lines
524 B
TOML
[project]
|
|
name = "pyxray"
|
|
version = "1.0.5"
|
|
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 = ""
|