2026-02-20 10:07:49 +01:00
|
|
|
[project]
|
|
|
|
|
name = "pygea"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Pangea RSS feed generator"
|
2026-03-29 14:46:57 +02:00
|
|
|
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"
|
|
|
|
|
|
2026-03-29 14:46:57 +02:00
|
|
|
[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"
|
2026-03-29 14:46:57 +02:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|