[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ffbb-mcp"
version = "0.1.0"
description = "MCP Server for FFBB (Fédération Française de Basketball) data"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"mcp[cli]>=1.0.0",
"ffbb-api-client-v3 @ git+https://github.com/nickdesi/FFBBApiClientV3.git",
"anysqlite>=0.0.5",
"uvicorn",
"starlette",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
]
[project.scripts]
ffbb-mcp = "ffbb_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 88
target-version = "py310"
exclude = [
".agent",
".git",
".venv",
".mypy_cache",
".ruff_cache",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"