27 lines
510 B
TOML
27 lines
510 B
TOML
[build-system]
|
|
requires = ["hatchling>=1.27.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "watfag"
|
|
dynamic = ["version"]
|
|
description = "Searches torrents with Jackett and scores them with WATFAG"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"feedparser>=6.0.12",
|
|
"httpx>=0.28.1",
|
|
"regex>=2026.2.28",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = [
|
|
"src/watfag",
|
|
]
|
|
[tool.hatch.build.targets.sdist]
|
|
packages = [
|
|
"src/watfag",
|
|
]
|
|
|
|
[tool.hatch.version]
|
|
path = "src/watfag/__init__.py"
|