pyproject.toml•1.27 kB
[project]
name = "you-need-an-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["fastmcp>=2.11.3", "pydantic>=2.11.5", "ynab>=1.4.0"]
[dependency-groups]
dev = [
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"pytest-xdist>=3.7.0",
"pytest-env>=1.1.5",
"mypy>=1.8.0",
"pre-commit>=3.6.0",
"ruff>=0.12.0",
]
[tool.pytest.ini_options]
addopts = [
"--cov=server",
"--cov=models",
"--cov=tests/",
"--cov-branch",
"--cov-report=term-missing",
"--cov-fail-under=100",
"--strict-markers",
"--strict-config",
"-Werror",
]
asyncio_mode = "auto"
testpaths = ["tests"]
filterwarnings = ["error"]
env = [
"YNAB_BUDGET=test_budget_id",
"YNAB_ACCESS_TOKEN=test_token_123",
]
[tool.mypy]
python_version = "3.12"
strict = true
[[tool.mypy.overrides]]
module = ["ynab", "ynab.*"]
implicit_reexport = true
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade (enforce modern python syntax)
"RUF", # ruff-specific rules
]
ignore = []