2026-07-31 07:31:10 +02:00
|
|
|
[project]
|
|
|
|
|
name = "mealie-mcp"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "MCP tools for Mealie recipe planning"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = ["mcp>=2.0.0", "httpx>=0.27.0"]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = ["pytest>=8.0"]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
mealie-mcp = "mealie_mcp.server:main"
|
2026-07-31 10:35:34 +02:00
|
|
|
mealie-mcp-read-only = "mealie_mcp.server:main_read_only"
|
2026-08-11 22:32:21 +02:00
|
|
|
mealie-mcp-import = "mealie_mcp.server:main_import"
|
2026-07-31 07:31:10 +02:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["mealie_mcp"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|