From f62d3e552b9f3d32d9d2bc632f0f5c4082b50dca Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Mon, 29 Sep 2025 22:14:49 +0300 Subject: [PATCH] Exclude evaluations, test, docs, github actions from builds --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 67ddddc5..09727f05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,9 @@ haiku-rag = "haiku.rag.cli:cli" requires = ["hatchling"] build-backend = "hatchling.build" +[tool.hatch.build] +exclude = ["/docs", "/evaluations", "/tests", "/.github"] + [tool.hatch.build.targets.wheel] packages = ["src/haiku"]