Initial productized Importarr service

This commit is contained in:
2026-07-29 11:37:57 +02:00
commit 577ea97d46
25 changed files with 886 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "importarr"
version = "0.1.0"
description = "Arr-style manual SABnzbd import service"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"fastapi>=0.111",
"httpx>=0.27",
"jinja2>=3.1",
"pydantic>=2.7",
"uvicorn[standard]>=0.30",
]
[project.optional-dependencies]
test = ["pytest>=8.2", "pytest-asyncio>=0.23"]
[project.scripts]
importarr = "importarr.main:run"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]