Files
NewsAgent/pyproject.toml
2026-01-26 12:34:00 +01:00

36 lines
712 B
TOML

[project]
name = "news-agent"
version = "0.1.0"
description = "AI-powered daily tech news aggregator and email digest"
requires-python = ">=3.11"
dependencies = [
"feedparser>=6.0.11",
"httpx>=0.27.0",
"openai>=1.12.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.1.0",
"jinja2>=3.1.3",
"premailer>=3.10.0",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.1",
"aiosqlite>=0.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.5",
"ruff>=0.2.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]