29 lines
592 B
TOML
29 lines
592 B
TOML
[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",
|
|
"pydantic>=2.7",
|
|
"uvicorn[standard]>=0.30",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8.2", "pytest-asyncio>=0.23"]
|
|
|
|
[project.scripts]
|
|
importarr = "importarr.main:run"
|
|
manual-media-import = "importarr.worker:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|