-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
110 lines (99 loc) · 2.35 KB
/
pyproject.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# pyproject.toml
# Python project configuration.
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "buildarr-jellyseerr"
version = "0.3.2"
description = "Jellyseerr media request library application plugin for Buildarr"
authors = ["Callum Dickinson <[email protected]>"]
license = "GPL-3.0-or-later"
homepage = "https://buildarr.github.io"
repository = "https://github.com/buildarr/buildarr-jellyseerr"
documentation = "https://buildarr.github.io/plugins/jellyseerr"
keywords = [
"buildarr",
"jellyseerr",
"sonarr",
"radarr",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Pydantic",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]
readme = "README.md"
packages = [{include = "buildarr_jellyseerr"}]
[tool.poetry.urls]
"Changes" = "https://buildarr.github.io/plugins/jellyseerr/release-notes"
"Issue Tracker" = "https://github.com/buildarr/buildarr-jellyseerr/issues"
[tool.poetry.plugins."buildarr.plugins"]
"jellyseerr" = "buildarr_jellyseerr.plugin:JellyseerrPlugin"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
buildarr = ">=0.7.0,<0.8.0"
buildarr-sonarr = {version = ">=0.6.0", optional = true}
buildarr-radarr = {version = ">=0.2.0", optional = true}
[tool.poetry.group.dev.dependencies]
black = "23.11.0"
mypy = "1.7.0"
types-requests = "2.31.0.10"
mkdocs = "1.5.3"
mkdocstrings = {extras = ["python"], version = "0.23.0"}
ruff = "0.1.5"
[tool.poetry.extras]
sonarr = ["buildarr-sonarr"]
radarr = ["buildarr-radarr"]
[tool.ruff]
fix = true
output-format = "grouped"
target-version = "py38"
line-length = 100
select = [
"A",
"B",
"BLE",
"E",
"F",
"G",
"I",
"INP",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"PTH",
"RUF",
"S",
"T10",
"T20",
"W",
"YTT",
]
extend-select = ["COM812", "COM818", "UP009"]
extend-ignore = [
"A003",
"B023",
"N805",
"N806",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0915",
"RUF012",
]
[tool.ruff.isort]
lines-between-types = 1
combine-as-imports = true
required-imports = ["from __future__ import annotations"]
[tool.black]
line_length = 100
[tool.mypy]
python_version = "3.8"
pretty = true