mirror of
https://github.com/katanemo/plano.git
synced 2026-05-01 11:56:29 +02:00
34 lines
745 B
TOML
34 lines
745 B
TOML
[project]
|
|
name = "archgw"
|
|
version = "0.3.17"
|
|
description = "Python-based CLI tool to manage Arch Gateway."
|
|
authors = [{ name = "Katanemo Labs, Inc." }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"archgw_modelserver==0.3.17",
|
|
"click>=8.1.7,<9.0.0",
|
|
"jinja2>=3.1.4,<4.0.0",
|
|
"jsonschema>=4.23.0,<5.0.0",
|
|
"pyyaml>=6.0.2,<7.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
archgw = "cli.main:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4.1,<9.0.0",
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [{ include = "cli" }]
|
|
dependencies = { archgw_modelserver = { path = "../../model_server", develop = true } }
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["-v"]
|