migrate to poetry 2 and standard metadata

This commit is contained in:
Branch Vincent 2025-10-24 09:38:43 -07:00
parent 9c9d81ca5a
commit 8ec8f87767
No known key found for this signature in database
11 changed files with 2473 additions and 92 deletions

2287
arch/tools/poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,30 +1,33 @@
[tool.poetry]
[project]
name = "archgw"
version = "0.3.16"
description = "Python-based CLI tool to manage Arch Gateway."
authors = ["Katanemo Labs, Inc."]
packages = [
{ include = "cli" }
]
authors = [{ name = "Katanemo Labs, Inc." }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"archgw-modelserver>=0.3.16,<1.0.0",
"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",
]
[tool.poetry.dependencies]
python = "^3.10"
archgw_modelserver = "^0.3.16"
click = "^8.1.7"
jinja2 = "^3.1.4"
jsonschema = "^4.23.0"
setuptools = "75.5.0"
pyyaml = "^6.0.2"
[tool.poetry.scripts]
[project.scripts]
archgw = "cli.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
[dependency-groups]
dev = [
"pytest>=8.4.1,<9.0.0",
]
[tool.poetry]
packages = [{ include = "cli" }]
dependencies = { python = "^3.10" }
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"