-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 861 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "triggarr"
version = "2.11.0"
description = "Automated search triggering for Radarr and Sonarr"
requires-python = ">=3.11"
dependencies = [
"pydantic-settings[toml]",
"httpx",
"loguru",
"tomli-w",
"fastapi>=0.136.3",
"starlette>=1.3.1",
"uvicorn[standard]",
"apscheduler>=3.11,<4",
"jinja2",
"aiofiles",
"aiosqlite",
"python-multipart>=0.0.31",
"bcrypt",
"itsdangerous",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-asyncio",
"pytailwindcss",
"ruff",
]
[project.scripts]
triggarr = "triggarr.__main__:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]