-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (49 loc) · 1.38 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
[tool.poetry]
name = "nornir_cli"
version = "1.3.0"
description = "Nornir CLI"
license = "MIT"
readme = "README.md"
keywords = ["nornir", "click", "nornir cli", "nornir-plugin"]
repository = "https://github.com/timeforplanb123/nornir_cli"
documentation = "https://timeforplanb123.github.io/nornir_cli/"
authors = ["Pavel Shemetov <timeforplanb123@gmail.com>"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
click = "8.1.7"
nornir = "3.4.1"
nornir-utils = "0.2.0"
nornir-jinja2 = "0.2.0"
nornir-netmiko = "1.0.0"
netmiko = "4.1.2"
nornir-scrapli = "2023.07.30"
scrapli = "2023.07.30"
scrapli-netconf = "2023.07.30"
scrapli-community = "2023.07.30"
nornir-napalm = "0.4.0"
ttp = "^0.9.1"
# initially, nornir_cli was created to work with NetBox inventory ^_-
nornir-netbox = "0.3.0"
nornir-pyez = "0.2.8"
nornir-f5 = "0.6.1"
nornir-paramiko = "0.2.0"
nornir-http = "0.1.3"
nornir-pyxl = "1.0.1"
nornir-netconf = "2.0.0"
nornir-routeros = "0.6.0"
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.6.0"
flake8 = "^5.0.4"
flake8-import-order = "^0.18.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nornir_cli = 'nornir_cli.nornir_cli:init_nornir_cli'