pyproject.toml•856 B
[project]
name = "yt-fetch"
version = "0.1.0"
description = "MCP server for comprehensive YouTube research with selective deep analysis"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.0.0",
"google-api-python-client>=2.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"python-dateutil>=2.8.0",
"rich>=13.0.0",
"tldwatch",
]
[dependency-groups]
dev = [
"mypy>=1.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"types-python-dateutil>=2.8.0",
]
[project.scripts]
yt-fetch = "yt_fetch.server:cli_main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.uv.sources]
tldwatch = { path = "../tldwatch" }