Files
WATFAG/pyproject.toml
2026-03-21 15:25:03 -04:00

33 lines
587 B
TOML

[build-system]
requires = ["hatchling>=1.29.0"]
build-backend = "hatchling.build"
[project]
name = "watfag"
dynamic = ["version"]
description = "Searches torrents with Jackett and scores them with WATFAG"
requires-python = ">=3.12"
dependencies = [
"feedparser>=6.0.12",
"httpx>=0.28.1",
"regex>=2026.2.28",
]
[dependency-groups]
dev = [
"hatch>=1.16.5",
"hatchling>=1.29.0",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/watfag",
]
[tool.hatch.build.targets.sdist]
packages = [
"src/watfag",
]
[tool.hatch.version]
path = "src/watfag/__init__.py"