pygea/pyproject.toml

19 lines
327 B
TOML
Raw Normal View History

2026-02-20 10:07:49 +01:00
[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"