-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
123 lines (107 loc) · 2.65 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
111
112
113
114
115
116
117
118
119
120
121
122
123
[tool.poetry]
name = "fast-alpr"
version = "0.1.1"
description = "Fast Automatic License Plate Recognition."
authors = ["ankandrew <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = [
"image-processing",
"computer-vision",
"deep-learning",
"object-detection",
"plate-detection",
"license-plate-ocr",
"onnx",
]
classifiers = [
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
opencv-python = "^4.9.0.80"
fast-plate-ocr = "^0.2.0"
open-image-models = "^0.2.0"
# Optional packages for creating the docs
mkdocs-material = { version = "*", optional = true }
mkdocstrings = { version = "*", extras = ["python"], optional = true }
mike = { version = "*", optional = true }
[tool.poetry.extras]
docs = ["mkdocs-material", "mkdocstrings", "mike"]
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
ruff = "*"
pylint = "*"
types-pyyaml = "*"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# Pylint
"PL",
# Perflint
"PERF",
# Ruff-specific rules
"RUF",
# pandas-vet
"PD",
]
ignore = ["N812", "PLR2004", "PD011"]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pylint]
max-args = 8
[tool.ruff.format]
line-ending = "lf"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.pylint.typecheck]
generated-members = ["cv2.*"]
signature-mutators = [
"click.decorators.option",
"click.decorators.argument",
"click.decorators.version_option",
"click.decorators.help_option",
"click.decorators.pass_context",
"click.decorators.confirmation_option"
]
[tool.pylint.format]
max-line-length = 100
[tool.pylint."messages control"]
disable = ["missing-class-docstring", "missing-function-docstring"]
[tool.pylint.design]
max-args = 8
min-public-methods = 1
[tool.pylint.basic]
no-docstring-rgx = "^__|^test_"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"