Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/pyproject.toml
1088 views
1
[tool.poetry]
2
name = "platerec"
3
version = "0.1.0"
4
description = ""
5
authors = ["Marc Belmont"]
6
7
[tool.poetry.dependencies]
8
python = "^3.8"
9
Pillow = "10.2.0"
10
requests = "^2.31.0"
11
psutil = "^5.7.0"
12
paramiko = "^3.4.0"
13
flask = "^2.3.2"
14
15
[tool.poetry.dev-dependencies]
16
pre-commit = "^2.2.0"
17
pytest = "^7.3.1"
18
hypothesis = "*"
19
flake8 = "*"
20
yapf = "==0.27"
21
rope = "^0.14.0"
22
pdbpp = "*"
23
24
[build-system]
25
requires = ["poetry>=0.12"]
26
build-backend = "poetry.masonry.api"
27
28
[tool.ruff]
29
target-version = "py38"
30
31
[tool.ruff.lint]
32
mccabe.max-complexity = 16
33
isort.split-on-trailing-comma = false
34
ignore = ["E501", "E251", "E266", "E401", "DJ001", "W291"]
35
select = [
36
"B",
37
"E",
38
"F",
39
"I",
40
"N",
41
"W",
42
"C9",
43
"DJ",
44
"UP",
45
"SIM101",
46
"SIM102",
47
"SIM103",
48
"SIM108",
49
"SIM109",
50
"SIM113",
51
"SIM114",
52
"SIM201",
53
"SIM202",
54
"SIM208",
55
"SIM210",
56
"SIM211",
57
"SIM212",
58
"SIM220",
59
"SIM221",
60
"SIM910",
61
"SIM911",
62
]
63
64
[tool.ruff.format]
65
skip-magic-trailing-comma = true
66
67
[tool.mypy]
68
ignore_missing_imports = true
69
install_types = true
70
non_interactive = true
71
disable_error_code = ["annotation-unchecked"]
72
73