Initial commit

This commit is contained in:
2026-03-19 12:13:02 -04:00
commit b9e7e1bfca
23 changed files with 1021 additions and 0 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[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"