Skip to content

Commit 204721b

Browse files
committed
Fix: Include server.py in package distribution (v2.0.1)
1 parent 357b5ad commit 204721b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "webhook-mcp-server"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "MCP Server for webhook.site API integration with layered architecture"
55
requires-python = ">=3.10"
66
dependencies = [
@@ -22,6 +22,13 @@ dev = [
2222
requires = ["hatchling"]
2323
build-backend = "hatchling.build"
2424

25+
[tool.hatch.build.targets.wheel]
26+
packages = ["handlers", "models", "services", "utils", "scripts"]
27+
28+
[tool.hatch.build.targets.wheel.force-include]
29+
"server.py" = "server.py"
30+
"py.typed" = "py.typed"
31+
2532
[tool.pytest.ini_options]
2633
asyncio_mode = "auto"
2734
testpaths = ["tests"]

0 commit comments

Comments
 (0)