[project]
name = "principia-mcp"
version = "0.1.0"
description = "MCP server for Zotero library access"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.0",
"pydantic>=2.0",
"loguru>=0.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
[project.scripts]
principia-mcp = "principia_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]