mirror of
https://github.com/katanemo/plano.git
synced 2026-04-29 10:56:35 +02:00
* removing unnecessar setup.py files * updated the cli for debug and access logs * ran the pre-commit locally to fix pull request * fixed bug where if archgw_process is None we didn't handle it gracefully * Apply suggestions from code review Co-authored-by: Adil Hafeez <adil@katanemo.com> * fixed changes based on PR * fixed version not found message * fixed message based on PR feedback * adding poetry lock * fixed pre-commit --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local> Co-authored-by: Adil Hafeez <adil@katanemo.com>
34 lines
735 B
TOML
34 lines
735 B
TOML
[tool.poetry]
|
|
name = "archgw"
|
|
version = "0.0.4"
|
|
description = "Python-based CLI tool to manage Arch Gateway."
|
|
authors = ["Katanemo Labs, Inc."]
|
|
packages = [
|
|
{ include = "cli" }
|
|
]
|
|
readme = "README.md"
|
|
|
|
include = [
|
|
# Include package data (docker-compose.yaml and other files)[
|
|
"config/docker-compose.yaml",
|
|
"config/arch_config_schema.yaml",
|
|
"config/stage.env"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
pyyaml = "^6.0.2"
|
|
pydantic = "^2.9.2"
|
|
click = "^8.1.7"
|
|
jinja2 = "^3.1.4"
|
|
jsonschema = "^4.23.0"
|
|
setuptools = "75.1.0"
|
|
archgw_modelserver= "0.0.3"
|
|
huggingface_hub = "^0.25.2"
|
|
|
|
[tool.poetry.scripts]
|
|
archgw = "cli.main:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|