Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = ">=3.14"
license = { text = "MIT" }
authors = [{ name = "Alexander Wenzel" }]
dependencies = [
"fastmcp>=3.3.1",
"fastmcp>=3.4.2",
"httpx>=0.28.1",
"python-dotenv>=1.2.2",
]
Expand All @@ -29,7 +29,7 @@ packages = ["src/mealie_mcp"]

[dependency-groups]
dev = [
"ruff>=0.15.15",
"ruff>=0.15.16",
"mypy>=2.1.0",
"pytest>=9.0.3",
"pre-commit>=4.6.0",
Expand All @@ -39,6 +39,13 @@ dev = [
"pytest-cov>=7.1.0",
]

[tool.uv.sources]
# Temporary pin to a fork carrying two unmerged generator fixes
# (openapi-generators/openapi-python-client#1448 and #1449). Drop this
# block and bump the floor in [dependency-groups].dev once a release
# containing both lands on PyPI.
openapi-python-client = { git = "https://github.com/alexander-wenzel-dev/openapi-python-client", branch = "pin/mealie-mcp-combined" }

[tool.ruff]
line-length = 100
target-version = "py314"
Expand Down
Loading