2025-10-24 15:58:54 -07:00
|
|
|
[project]
|
2024-10-09 15:53:12 -07:00
|
|
|
name = "archgw"
|
2025-10-24 17:52:15 -07:00
|
|
|
version = "0.3.17"
|
2024-10-09 15:53:12 -07:00
|
|
|
description = "Python-based CLI tool to manage Arch Gateway."
|
2025-10-24 15:58:54 -07:00
|
|
|
authors = [{ name = "Katanemo Labs, Inc." }]
|
2024-10-18 12:09:45 -07:00
|
|
|
readme = "README.md"
|
2025-10-24 15:58:54 -07:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
2025-10-24 17:52:15 -07:00
|
|
|
"archgw_modelserver==0.3.17",
|
2025-10-24 15:58:54 -07:00
|
|
|
"click>=8.1.7,<9.0.0",
|
|
|
|
|
"jinja2>=3.1.4,<4.0.0",
|
|
|
|
|
"jsonschema>=4.23.0,<5.0.0",
|
|
|
|
|
"setuptools==75.5.0",
|
|
|
|
|
"pyyaml>=6.0.2,<7.0.0",
|
|
|
|
|
]
|
2024-10-09 15:53:12 -07:00
|
|
|
|
2025-10-24 15:58:54 -07:00
|
|
|
[project.scripts]
|
2024-10-09 15:53:12 -07:00
|
|
|
archgw = "cli.main:main"
|
|
|
|
|
|
2025-10-24 15:58:54 -07:00
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.4.1,<9.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
|
packages = [{ include = "cli" }]
|
2025-10-24 17:52:15 -07:00
|
|
|
dependencies = { python = ">=3.10", archgw_modelserver = { path = "../../model_server", develop = true } }
|
2025-07-11 16:42:16 -07:00
|
|
|
|
2024-10-09 15:53:12 -07:00
|
|
|
[build-system]
|
2025-10-24 15:58:54 -07:00
|
|
|
requires = ["poetry-core>=2.0.0"]
|
2024-10-09 15:53:12 -07:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
2025-07-11 16:42:16 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
addopts = ["-v"]
|