pyproject.toml•961 B
[project]
name = "mcp-sqlite-server"
version = "0.1.0"
description = "MCP server with HTTP+SSE for SQLite CRUD operations"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"sse-starlette>=1.6.5",
"pyyaml>=6.0.1",
"pydantic>=2.5.0",
"mcp>=0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
"mypy>=1.7.0",
"ruff>=0.1.6",
"black>=23.11.0",
"httpx>=0.25.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"