From a05b28dbd673b6b6bb778925f95670ed28e5ad57 Mon Sep 17 00:00:00 2001 From: Lars Varming Date: Mon, 10 Nov 2025 11:49:57 +0100 Subject: [PATCH] Add: Hatchling build configuration for graphiti-core-varming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Configure hatchling to include graphiti_core package in wheel - Required because package name (graphiti-core-varming) differs from module name (graphiti_core) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e23c8bf0..09834836 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,9 @@ dev = [ requires = ["hatchling"] build-backend = "hatchling.build" +[tool.hatch.build.targets.wheel] +packages = ["graphiti_core"] + [tool.pytest.ini_options] pythonpath = ["."]