mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
Some checks are pending
CI / pre-commit (push) Waiting to run
CI / plano-tools-tests (push) Waiting to run
CI / native-smoke-test (push) Waiting to run
CI / docker-build (push) Waiting to run
CI / validate-config (push) Waiting to run
CI / security-scan (push) Blocked by required conditions
CI / test-prompt-gateway (push) Blocked by required conditions
CI / test-model-alias-routing (push) Blocked by required conditions
CI / test-responses-api-with-state (push) Blocked by required conditions
CI / e2e-plano-tests (3.10) (push) Blocked by required conditions
CI / e2e-plano-tests (3.11) (push) Blocked by required conditions
CI / e2e-plano-tests (3.12) (push) Blocked by required conditions
CI / e2e-plano-tests (3.13) (push) Blocked by required conditions
CI / e2e-plano-tests (3.14) (push) Blocked by required conditions
CI / e2e-demo-preference (push) Blocked by required conditions
CI / e2e-demo-currency (push) Blocked by required conditions
Publish docker image (latest) / build-arm64 (push) Waiting to run
Publish docker image (latest) / build-amd64 (push) Waiting to run
Publish docker image (latest) / create-manifest (push) Blocked by required conditions
Build and Deploy Documentation / build (push) Waiting to run
53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[project]
|
|
name = "planoai"
|
|
version = "0.4.20"
|
|
description = "Python-based CLI tool to manage Plano."
|
|
authors = [{name = "Katanemo Labs, Inc."}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"click>=8.1.7,<9.0.0",
|
|
"grpcio>=1.60.0",
|
|
"jinja2>=3.1.4,<4.0.0",
|
|
"jsonschema>=4.23.0,<5.0.0",
|
|
"opentelemetry-proto>=1.20.0",
|
|
"questionary>=2.1.1,<3.0.0",
|
|
"pyyaml>=6.0.2,<7.0.0",
|
|
"requests>=2.33.0,<3.0.0",
|
|
"urllib3>=2.6.3",
|
|
"rich>=14.2.0",
|
|
"rich-click>=1.9.5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.4.1,<9.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
planoai = "planoai.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "planoai/__init__.py"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["planoai"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"../config/plano_config_schema.yaml" = "planoai/data/plano_config_schema.yaml"
|
|
"../config/envoy.template.yaml" = "planoai/data/envoy.template.yaml"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["planoai/**"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["-v"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4.2",
|
|
]
|