From 40877d83d20bff70114769daa1e648ec80d06df2 Mon Sep 17 00:00:00 2001 From: Chaim Date: Mon, 13 Apr 2026 20:23:02 +0000 Subject: [PATCH] fix: add hatch build config for pip install from pyproject.toml Hatchling couldn't find the package directory (expected shira_hermes/). Added [tool.hatch.build.targets.wheel] packages to include api/ and mcp_server/ directories. Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 447637e..bb435d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,9 @@ dev = [ "pytest-asyncio>=0.24.0", ] +[tool.hatch.build.targets.wheel] +packages = ["api", "mcp_server"] + [build-system] requires = ["hatchling"] build-backend = "hatchling.build"