import project from david with uv

This commit is contained in:
Abel Luck 2026-02-20 10:07:49 +01:00
commit 8056704736
11 changed files with 1530 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "pygea"
version = "0.1.0"
description = "Pangea RSS feed generator"
requires-python = ">=3.10"
dependencies = [
"requests",
"beautifulsoup4",
"feedgen",
"python-dateutil",
]
[project.scripts]
pygea = "pygea.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"