[project]
name = "personal-productivity-mcp"
version = "0.1.0"
description = "Multi-domain MCP server for personal productivity (career, fitness, family)"
authors = [
{name = "Benjamin Kelley"}
]
requires-python = ">=3.11"
dependencies = [
"mcp>=0.9.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"playwright>=1.40.0",
"httpx>=0.25.0",
"aiosqlite>=0.19.0",
"python-dotenv>=1.0.0",
"typing-extensions>=4.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mcp_server"]
package-dir = {"" = "src"}
[tool.black]
line-length = 100
target-version = ['py311']
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]