forked from wvandeun/nornir_netbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (25 loc) · 879 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
[tool.poetry]
name = "nornir_netbox"
version = "0.3.0"
description = "Netbox plugin for Nornir"
authors = ["Wim Van Deun <[email protected]>", "Clay Curtis <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.plugins."nornir.plugins.inventory"]
"NBInventory" = "nornir_netbox.plugins.inventory.netbox:NBInventory"
"NetBoxInventory2" = "nornir_netbox.plugins.inventory.netbox:NetBoxInventory2"
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
requests = "^2.23.0"
nornir = { version = "~3", allow-prereleases = true }
[tool.poetry.dev-dependencies]
black = { version = "21.10b0", allow-prereleases = true }
mypy = "*"
pylama = "^7.7.1"
pytest = "*"
pytest-coverage = "^0.0"
requests_mock = "^1.7.0"
mkdocs = "^1.1.2"
types-requests = "^2.23.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"