2024-10-09 15:53:12 -07:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "archgw"
|
2025-07-08 00:59:33 -07:00
|
|
|
version = "0.3.3"
|
2024-10-09 15:53:12 -07:00
|
|
|
description = "Python-based CLI tool to manage Arch Gateway."
|
|
|
|
|
authors = ["Katanemo Labs, Inc."]
|
|
|
|
|
packages = [
|
|
|
|
|
{ include = "cli" }
|
|
|
|
|
]
|
2024-10-18 12:09:45 -07:00
|
|
|
readme = "README.md"
|
2024-10-09 15:53:12 -07:00
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-01-10 16:45:36 -08:00
|
|
|
python = "^3.10"
|
2025-07-08 00:59:33 -07:00
|
|
|
archgw_modelserver = "^0.3.3"
|
2024-10-09 15:53:12 -07:00
|
|
|
click = "^8.1.7"
|
|
|
|
|
jinja2 = "^3.1.4"
|
|
|
|
|
jsonschema = "^4.23.0"
|
2024-11-17 17:12:01 -08:00
|
|
|
setuptools = "75.5.0"
|
2025-02-14 19:28:10 -08:00
|
|
|
pyyaml = "^6.0.2"
|
2024-10-09 15:53:12 -07:00
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
archgw = "cli.main:main"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|