pyproject.toml•1.45 kB
[project]
name = "wanikani-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "jack.edney", email = "jack.edney@outlook.com" }
]
requires-python = ">=3.12"
dependencies = [
"alembic>=1.16.4",
"apscheduler>=3.11.0",
"fastapi>=0.116.1",
"fastmcp>=2.10.5",
"go-task-bin>=3.44.0",
"httpx>=0.28.1",
"mcp>=1.11.0",
"psycopg2-binary>=2.9.10",
"pydantic-settings>=2.10.1",
"sqlmodel>=0.0.24",
"uvicorn>=0.35.0",
]
[project.scripts]
wanikani-mcp = "wanikani_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.3",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.ruff]
target-version = "py312"
line-length = 88
exclude = [
".git",
"__pycache__",
".venv",
"venv",
"build",
"dist",
"*.egg-info",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["wanikani_mcp"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"