forked from grische/extremeflash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 968 Bytes
/
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
[tool.poetry]
name = "extremeflash"
version = "0.1.0"
description = ""
authors = ["Grische <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [{include = "extremeflash"}]
[tool.poetry.dependencies]
python = "^3.10"
pyserial = "^3.5"
tftpy = "^0.8.2"
paramiko = "^3.0.0"
scp = "^0.14.5"
[tool.poetry.scripts]
extremeflash = "extremeflash.__main__:run"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
mypy = "^1.7.0"
pylint = "^3.0.2"
types-paramiko = "^3.0.0.4"
black = "^23.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MAIN']
max-line-length = 120
disable = [
"logging-fstring-interpolation",
"missing-function-docstring",
]
fail-under = 9.5
fail-on = [
"E", # any error
]
recursive = true
[[tool.mypy.overrides]]
module = [
"serial.*",
"scp.*",
"tftpy.*",
]
ignore_missing_imports = true
[tool.black]
line-length = 120