-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
158 lines (139 loc) · 4.18 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[tool.poetry]
name = "fast-plate-ocr"
version = "0.3.0"
description = "Fast & Lightweight OCR for vehicle license plates."
authors = ["ankandrew <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ankandrew/fast-plate-ocr/"
documentation = "https://ankandrew.github.io/fast-plate-ocr"
keywords = ["plate-recognition", "license-plate-recognition", "license-plate-ocr"]
license = "MIT"
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"
# Packages required for doing inference
numpy = ">=1.20"
opencv-python = "*"
pyyaml = ">=5.1"
tqdm = "*"
rich = "*"
# Install onnxruntime-gpu only on systems other than macOS or Raspberry Pi
onnxruntime-gpu = { version = ">=1.19.2", markers = "sys_platform != 'darwin' and platform_machine != 'armv7l' and platform_machine != 'aarch64' and (platform_system == 'Linux' or platform_system == 'Windows')" }
# Fallback to onnxruntime for macOS, Raspberry Pi, and other unsupported platforms
onnxruntime = { version = ">=1.19.2", markers = "sys_platform == 'darwin' or platform_machine == 'armv7l' or platform_machine == 'aarch64'" }
# Training packages are optional
albumentations = { version = "*", optional = true }
click = { version = "*", optional = true }
keras = { version = ">=3.1.1", optional = true }
matplotlib = { version = "*", optional = true }
pandas = { version = "*", optional = true }
pydantic = { version = "^2.0.0", optional = true }
tensorboard = { version = "*", optional = true }
tensorflow = { version = "*", optional = true }
tf2onnx = { version = "*", optional = true }
torch = { version = "*", optional = true }
# Optional packages for creating the docs
mkdocs-material = { version = "*", optional = true }
mkdocstrings = {version = "*", extras = ["python"], optional = true}
mike = { version = "*", optional = true }
onnxsim = { version = ">0.4.10", optional = true }
[tool.poetry.extras]
train = [
"albumentations",
"click",
"keras",
"matplotlib",
"pandas",
"pydantic",
"tensorboard",
"tensorflow",
"tf2onnx",
"torch",
"onnxsim",
]
docs = ["mkdocs-material", "mkdocstrings", "mike"]
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
ruff = "*"
pandas-stubs = "^2.2.0.240218"
pylint = "*"
types-pyyaml = "^6.0.12.20240311"
[tool.poetry.scripts]
fast_plate_ocr = "fast_plate_ocr.cli.cli:main_cli"
[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.mypy.overrides]]
module = ["albumentations"]
ignore_missing_imports = true
[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", "wrong-import-order"]
[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"