Files
newspaper/pyproject.toml
T
2026-07-05 17:59:02 +08:00

29 lines
599 B
TOML

[project]
name = "hongyu-daily-newspaper"
version = "0.1.0"
description = "Personal daily newspaper pipeline for Daily News for Markyan04."
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4>=4.12.0",
"feedparser>=6.0.11",
"jinja2>=3.1.0",
"markdown>=3.6",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"requests>=2.31.0",
]
[project.scripts]
hongyu-daily = "newspaper_pipeline.cli:main"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/newspaper_pipeline"]