-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 1.07 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
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[project]
name = "frigate-plate-recognizer"
version = "2.3.1"
description = "Identify license plates and publish enriched events for Frigate."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Frigate Plate Recognizer Maintainers" }]
[tool.setuptools.packages.find]
include = ["frigate_plate_recognizer*"]
exclude = ["tests*", "config*", "plates*", "myenv*"]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["frigate_plate_recognizer", "tests", "."]
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = ["E203", "E266", "E501"]
[tool.mypy]
python_version = "3.11"
files = ["frigate_plate_recognizer"]
ignore_missing_imports = true
warn_unused_configs = true
show_error_codes = true
pretty = true
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra --strict-markers --timeout=30"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["frigate_plate_recognizer"]
[tool.coverage.report]
show_missing = true
skip_empty = true