-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
47 lines (42 loc) · 1.16 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
[build-system]
requires = ["setuptools>=56.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "napalm-ros"
version="1.2.6"
description="Network Automation and Programmability Abstraction Layer driver for Mikrotik ROS"
readme = "README.md"
authors = ["Łukasz Kostka <lukasz.g.kostka@gmail.com>"]
license = "GPL-2.0-or-later"
documentation="https://github.com/napalm-automation-community/napalm-ros"
repository="https://github.com/napalm-automation-community/napalm-ros/issues"
keywords=[
"mikrotik",
"routeros",
"api",
"napalm",
]
[tool.poetry.dependencies]
python = "^3.7.2"
napalm = "^4.0.0"
librouteros = "^3.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
yapf = "^0.40.1"
[tool.yapf]
based_on_style = "pep8"
split_before_logical_operator = true
align_closing_bracket_with_visual_indent = true
blank_line_before_nested_class_or_def = true
blank_lines_around_top_level_definition = 2
column_limit = 140
dedent_closing_brackets = true
coalesce_brackets = false
each_dict_entry_on_separate_line = true
indent_dictionary_value = false
split_arguments_when_comma_terminated = true
[tool.ruff]
line-length = 160
ignore = [
"E712",
]