plano/arch/tools/pyproject.toml

36 lines
653 B
TOML
Raw Normal View History

2025-10-22 14:59:57 -07:00
[project]
name = "archgw"
2025-09-30 13:44:11 -07:00
version = "0.3.15"
description = "Python-based CLI tool to manage Arch Gateway."
2025-10-22 14:59:57 -07:00
authors = [
{ name = "Katanemo Labs, Inc." }
]
readme = "README.md"
2025-10-22 14:59:57 -07:00
requires-python = ">=3.10"
dependencies = [
"archgw_modelserver>=0.3.15",
"click>=8.1.7",
"jinja2>=3.1.4",
"jsonschema>=4.23.0",
"setuptools==75.5.0",
"pyyaml>=6.0.2",
]
2025-10-22 14:59:57 -07:00
[project.scripts]
archgw = "cli.main:main"
2025-10-22 14:59:57 -07:00
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
]
2025-07-11 16:42:16 -07:00
[build-system]
2025-10-22 14:59:57 -07:00
requires = ["hatchling"]
build-backend = "hatchling.build"
2025-07-11 16:42:16 -07:00
2025-10-22 14:59:57 -07:00
[tool.hatch.build.targets.wheel]
packages = ["cli"]
2025-07-11 16:42:16 -07:00
[tool.pytest.ini_options]
addopts = ["-v"]