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
This commit is contained in:
Lars Varming 2025-11-09 20:29:58 +01:00
parent cbaffa1d89
commit 1dd3f6b337

View file

@ -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"