Initial commit

This commit is contained in:
2026-07-05 17:59:02 +08:00
commit 11ea2ddb9a
18 changed files with 5549 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[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"]