-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.61 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
# Keep using setup.py for version handling
# Dependencies are specified here for uv to use
[project]
name = "qbit_manage"
# Version is dynamically determined from setup.py
dynamic = ["version"]
description = "This tool will help manage tedious tasks in qBittorrent and automate them. Tag, categorize, remove Orphaned data, remove unregistered torrents and much much more."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "bobokun"},
]
dependencies = [
"argon2-cffi==25.1.0",
"bencode.py==4.0.0",
"croniter==6.0.0",
"fastapi==0.135.1",
"GitPython==3.1.46",
"humanize==4.15.0",
"pytimeparse2==1.7.1",
"qbittorrent-api==2025.11.1",
"requests==2.32.5",
"retrying==1.4.2",
"ruamel.yaml==0.19.1",
"slowapi==0.1.9",
"uvicorn==0.42.0",
]
[project.scripts]
qbit-manage = "qbit_manage:main"
[project.urls]
Homepage = "https://github.com/StuffAnThings"
Repository = "https://github.com/StuffAnThings/qbit_manage"
[project.optional-dependencies]
dev = [
"pre-commit==4.5.1",
"ruff==0.15.6",
]
[tool.ruff]
line-length = 130
[tool.ruff.lint]
select = [
"I", # isort - import order
"UP", # pyupgrade
"T10", # debugger
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
]
ignore = [
"E722", # E722 Do not use bare except, specify exception instead
"E402", # E402 module level import not at top of file
]
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.format]
line-ending = "auto"