[project]
name = "sakila-mcp-server"
version = "0.1.0"
description = "MCP server for Sakila MySQL database"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"aiomysql>=0.2.0",
"python-dotenv>=1.0.0",
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
]
[project.scripts]
sakila-mcp = "sakila_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["sakila_mcp"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
markers = ["integration: tests requiring database connection"]