[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "daily-briefing"
version = "0.1.0"
description = "MCP server for generating personalized daily briefings from multiple data sources"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Da51d" }
]
keywords = ["mcp", "briefing", "calendar", "meetings", "productivity"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"structlog>=24.0.0",
"icalendar>=5.0.0",
"python-dateutil>=2.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
"respx>=0.21.0",
"ruff>=0.3.0",
"time-machine>=2.13.0",
]
[project.scripts]
daily-briefing = "daily_briefing.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/daily_briefing"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]