-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (43 loc) · 1.03 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
[tool.poetry]
name = "air-link"
version = "0.4.0"
description = "Provide SSH access, diagnostics and administration for your edge devices."
authors = ["Zauberzeug GmbH <[email protected]>"]
readme = "README.md"
repository = "https://github.com/zauberzeug/air-link"
[tool.poetry.dependencies]
python = "^3.8.2"
nicegui = "^2.7.0"
docker = "^7.1.0"
docutils = "0.20.1" # fixes the error "Package docutils (0.21.post1) not found."
aioping = "^0.4.0"
[tool.poetry.dev-dependencies]
pre-commit = "^3.5.0"
[tool.poetry.scripts]
air-link = "air_link.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
indent-width = 4
line-length = 120
[tool.ruff.lint]
select = [
"I", # isort
"E", # pycodestyle
"W", # pycodestyle
"B", # bugbear
"F", # pyflakes
"UP", # pyupgrade
"RUF", # ruff
"PL", # pylint
]
fixable = [
"I", # isort
]
ignore = [
"PLR2004", # magic value comparison
]
[[tool.mypy.overrides]]
module = ["docker"]
ignore_missing_imports = true