-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (79 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (79 loc) · 1.63 KB
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
[project]
name = "anibridge-jellyfin-provider"
version = "0.2.3"
description = "Jellyfin provider for the AniBridge project."
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.14"
authors = [
{ name = "Elias Benbourenane", email = "eliasbenbourenane@gmail.com" },
]
maintainers = [
{ name = "Elias Benbourenane", email = "eliasbenbourenane@gmail.com" },
]
keywords = ["anibridge", "jellyfin"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.13.3",
"anibridge-provider-base>=0.1.0a2",
"anibridge-utils>=0.2.0",
"msgspec>=0.21.1",
]
[tool.ruff]
indent-width = 4
line-length = 88
[tool.ruff.format]
docstring-code-format = true
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
select = [
"A",
"ASYNC",
"B",
"C4",
"D",
"E",
"F",
"FURB",
"G",
"I",
"N",
"PERF",
"PLC",
"PLE",
"RUF",
"SIM",
"UP",
"W",
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
addopts = "--cov=src --import-mode=importlib"
asyncio_mode = "auto"
[tool.uv]
python-preference = "only-managed"
[tool.uv.build-backend]
module-name = "anibridge"
namespace = true
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
"ty>=0.0.22",
]