From 1dd3f6b3378570a8b099772d7ed4ce7a57fd6de7 Mon Sep 17 00:00:00 2001 From: Lars Varming Date: Sun, 9 Nov 2025 20:29:58 +0100 Subject: [PATCH] Fix: Include config directory in PyPI package - Added config/ to packages list in pyproject.toml - This fixes missing config.yaml in installed package - Users were getting wrong defaults because config.yaml wasn't in the wheel - Bump version to 1.0.3 --- mcp_server/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcp_server/pyproject.toml b/mcp_server/pyproject.toml index bfc50a72..4578b284 100644 --- a/mcp_server/pyproject.toml +++ b/mcp_server/pyproject.toml @@ -3,14 +3,14 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] -packages = ["src"] +packages = ["src", "config"] [tool.hatch.metadata] allow-direct-references = true [project] name = "graphiti-mcp-varming" -version = "1.0.2" +version = "1.0.3" description = "Graphiti MCP Server - Enhanced fork with additional tools by Varming" readme = "README.md" requires-python = ">=3.10,<4"