This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (64 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
77 lines (64 loc) · 1.35 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
[dependency-groups]
dev = [
"pre-commit >= 4.5.0"
]
tests = [
"pytest >= 9.0.0",
"pytest-cov >= 7.0.0",
"tox >= 4.32.0",
"tox-uv >= 1.29.0"
]
[project]
dependencies = [
"numpy >= 2.2.0",
"opencv-python >= 4.12.0.0",
"pymupdf >= 1.26.0",
"pytesseract >= 0.3.13",
"rich >= 14.2.0",
"tessdata-eng >= 1.0.0"
]
description = "Json data of Bin rotations extracted from an Image/Pdf."
name = "Bin-Lights"
readme = "README.md"
requires-python = ">= 3.13"
version = "0.1.0"
[tool.ruff]
fix = true
line-length = 100
output-format = "grouped"
show-fixes = true
unsafe-fixes = true
[tool.ruff.format]
docstring-code-format = true
line-ending = "native"
skip-magic-trailing-comma = true
[tool.ruff.lint]
ignore = [
"COM812",
"D",
"EM",
"FBT",
"PLR0913",
"T201"
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
mypy-init-return = true
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.flake8-unused-arguments]
ignore-variadic-names = true
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = false
[tool.ruff.lint.pep8-naming]
classmethod-decorators = ["classmethod"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["PLR2004", "S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.tomlsort]
all = true