-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
33 lines (29 loc) · 923 Bytes
/
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
[tool.poetry]
name = "nornir_netmiko"
version = "1.0.1"
description = "Netmiko's plugins for Nornir"
authors = ["Kirk Byers <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/ktbyers/nornir_netmiko"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.plugins."nornir.plugins.connections"]
"netmiko" = "nornir_netmiko.connections:Netmiko"
[tool.poetry.dependencies]
python = "^3.8"
netmiko = "^4.0.0"
[tool.poetry.dev-dependencies]
black = "23.11.0"
mypy = "1.7.1"
pylama = "8.4.1"
pytest = "7.4.3"
[build-system]
requires = ["poetry>=1.1.8"]
build-backend = "poetry.masonry.api"