2025-12-26 11:21:42 -08:00
|
|
|
[project]
|
2025-12-23 19:26:51 -08:00
|
|
|
name = "planoai"
|
2026-03-05 12:17:45 -08:00
|
|
|
version = "0.4.10"
|
2025-12-23 18:37:58 -08:00
|
|
|
description = "Python-based CLI tool to manage Plano."
|
2025-12-26 11:21:42 -08:00
|
|
|
authors = [{name = "Katanemo Labs, Inc."}]
|
2024-10-18 12:09:45 -07:00
|
|
|
readme = "README.md"
|
2025-12-26 11:21:42 -08:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"click>=8.1.7,<9.0.0",
|
2026-02-10 13:17:43 -08:00
|
|
|
"grpcio>=1.60.0",
|
2025-12-26 11:21:42 -08:00
|
|
|
"jinja2>=3.1.4,<4.0.0",
|
|
|
|
|
"jsonschema>=4.23.0,<5.0.0",
|
2026-02-10 13:17:43 -08:00
|
|
|
"opentelemetry-proto>=1.20.0",
|
|
|
|
|
"questionary>=2.1.1,<3.0.0",
|
2025-12-26 11:21:42 -08:00
|
|
|
"pyyaml>=6.0.2,<7.0.0",
|
|
|
|
|
"requests>=2.31.0,<3.0.0",
|
2026-02-13 19:53:49 -08:00
|
|
|
"urllib3>=2.6.3",
|
2026-02-10 13:17:43 -08:00
|
|
|
"rich>=14.2.0",
|
|
|
|
|
"rich-click>=1.9.5",
|
2025-12-26 11:21:42 -08:00
|
|
|
]
|
2024-10-09 15:53:12 -07:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.4.1,<9.0.0",
|
|
|
|
|
]
|
2024-10-09 15:53:12 -07:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[project.scripts]
|
2025-12-25 14:55:29 -08:00
|
|
|
planoai = "planoai.main:main"
|
2025-07-11 16:42:16 -07:00
|
|
|
|
2024-10-09 15:53:12 -07:00
|
|
|
[build-system]
|
2025-12-26 11:21:42 -08:00
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
|
path = "planoai/__init__.py"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["planoai"]
|
2026-02-10 13:17:43 -08:00
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
2026-03-05 12:40:50 -08:00
|
|
|
include = ["planoai/**", "hatch_build.py"]
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist.force-include]
|
|
|
|
|
"../config/plano_config_schema.yaml" = "config/plano_config_schema.yaml"
|
|
|
|
|
"../config/envoy.template.yaml" = "config/envoy.template.yaml"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build]
|
|
|
|
|
hooks.custom.path = "hatch_build.py"
|
2025-07-11 16:42:16 -07:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
addopts = ["-v"]
|
2025-12-27 23:49:41 -08:00
|
|
|
|
2025-12-28 14:14:27 -08:00
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
2025-12-27 23:49:41 -08:00
|
|
|
"pytest>=8.4.2",
|
|
|
|
|
]
|