pygea/pyproject.toml

30 lines
514 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"
readme = "README.md"
requires-python = ">=3.13"
2026-02-20 10:07:49 +01:00
dependencies = [
"requests",
"beautifulsoup4",
"feedgen",
"python-dateutil",
]
[project.scripts]
pygea = "pygea.main:main"
[dependency-groups]
dev = [
"pytest>=8.3.5,<9.0.0",
"black>=24.10.0,<25.0.0",
"isort>=5.13.2,<6.0.0",
]
2026-02-20 10:07:49 +01:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]