-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.22 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
[tool.poetry]
name = "nornir_paramiko"
version = "0.3.0"
description = ""
authors = ["Devon Mar <[email protected]>"]
readme = "README.md"
[tool.poetry.plugins."nornir.plugins.connections"]
"paramiko" = "nornir_paramiko.plugins.connections:Paramiko"
[tool.poetry.dependencies]
python = "^3.6"
paramiko = "^2.7"
nornir = "^3.0.0"
scp = ">=0.13.3,<0.15.0"
[tool.poetry.dev-dependencies]
pytest = { version = "^7.2.0", python = "^3.7.2" }
Sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.1.1"
sphinx-autodoc-typehints = { version = "^1.22", python = "^3.7" }
mypy = "^0.971"
types-paramiko = "^2.11.6"
ruff = { version = "^0.4", python = "^3.7" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = [
"scp"
]
ignore_missing_imports = true
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20
[tool.ruff.lint]
select = [
"C4",
"E",
"EXE",
"F",
"I",
"ISC",
"PERF",
"PIE",
"PYI",
"UP",
"W",
]
ignore = [
"E501",
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
"W191",
"E111",
"E114",
"E117",
"D206",
"D300",
"Q000",
"Q001",
"Q002",
"Q003",
"COM812",
"COM819",
"ISC001",
"ISC002",
]