From 0c2cae2066143d07ecba3ad03e83785361ff7004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Fri, 9 May 2025 17:03:48 +0200 Subject: [PATCH] Add cai-replay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- pyproject.toml | 4 +++- tools/__init__.py | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 tools/__init__.py diff --git a/pyproject.toml b/pyproject.toml index c7315122..c2cb3ba0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,10 +81,11 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] -packages = ["src/cai"] +packages = ["src/cai", "tools"] [tool.hatch.build.targets.wheel.sources] "src" = "" +"tools" = "tools" [tool.hatch.build.targets.wheel.force-include] "src/cai/prompts" = "cai/prompts" @@ -151,3 +152,4 @@ format-command = "ruff format --stdin-filename {filename}" [project.scripts] cai = "cai.cli:main" +cai-replay = "tools.replay:main" diff --git a/tools/__init__.py b/tools/__init__.py new file mode 100644 index 00000000..ee815b44 --- /dev/null +++ b/tools/__init__.py @@ -0,0 +1 @@ +"""Tools package for cai framework.""" \ No newline at end of file