pygea/pyproject.toml

18 lines
327 B
TOML

[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"