-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
121 lines (107 loc) · 2.68 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[tool.poetry]
name = "fakenos"
version = "0.2.1"
description = "Fake Network Operating System"
authors = ["Denis Mulyalin <d.mulyalin@gmail.com>"]
maintainers = ["Denis Mulyalin <d.mulyalin@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["NetworkAutomation", "Testing", "SSH"]
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
include = [
"LICENSE",
"README.md",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
paramiko = "<4.0"
pyyaml = "<7.0"
pydantic = "<3.0"
detect = "2020.12.*"
[tool.poetry.dev-dependencies]
pymdown-extensions = "*"
mkdocs-material = "*"
pytest-timeout = "*"
mkdocstrings = {version = "*", extras = ["cystal", "python"]}
bandit = "*"
black = "*"
coverage = "*"
invoke = "*"
flake8 = "*"
pylint = "*"
pytest = "*"
toml = "*"
yamllint = "*"
pre-commit = "2.15.*"
pyenchant = "*"
netmiko = "*"
requests = "*"
psutil = "*"
ruamel-yaml = "^0.18.6"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| settings.py # This is where you define files that should not be stylized by black
# the root of the project
)
'''
[tool.bandit]
exclude_dirs = ["./tests/", "./.venv", "./update_platforms.py"]
tests = ["B201", "B301"]
skips = ["B101", "B601"]
[tool.poetry.extras]
test = ["pytest"]
[tool.pylint.master]
ignore = ".venv"
[tool.pylint.basic]
# No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes.
no-docstring-rgx = "^(_|test_|Meta$)"
min-public-methods = 1
[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
# Pylint and Black disagree about how to format multi-line arrays; Black wins.
disable = """,
line-too-long,
redefined-outer-name
"""
[tool.coverage.run]
branch = true
omit = [".*", ".venv"]
command_line = "-m pytest"
[tools.coverage.report]
fail_under = 80
show_missing = true
[tools.coverage.html]
directory = "coverage_html_report"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-vv"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fakenos = 'fakenos.plugins.utils.cli:run_cli'