pyproject.toml•864 B
[project]
name = "mcp-dayone"
version = "2.0.0"
description = "MCP server for Day One Journal integration with Claude Desktop"
authors = [
{name = "Kevin Davison", email = "kevin.davison@quevin.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"mcp>=1.0.0",
"click>=8.0.0",
"pydantic>=2.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"black>=24.0.0",
"mypy>=1.0.0"
]
[project.scripts]
dayone-server = "mcp_dayone.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"black>=24.0.0",
"mypy>=1.0.0"
]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true