-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
34 lines (29 loc) · 951 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
34
[tool.poetry]
name = "nornir_utils"
version = "0.2.0"
description = "Collection of plugins and functions for nornir that don't require external dependencies"
authors = ["David Barroso <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.plugins."nornir.plugins.inventory"]
"YAMLInventory" = "nornir_utils.plugins.inventory.yaml_inventory:YAMLInventory"
[tool.poetry.plugins."nornir.plugins.transform_function"]
"load_credentials" = "nornir_utils.plugins.inventory.transform_functions:load_credentials"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
nornir = { version = "~3", allow-prereleases = true }
colorama = "^0.4.3"
[tool.poetry.dev-dependencies]
black = "*"
mypy = "*"
pylama = "*"
pytest = "*"
nbval = "*"
jupyter = "^1"
sphinx = "^5.3.0"
sphinxcontrib-napoleon = "^0.7"
nbsphinx = "^0.9.2"
sphinx-issues = "^3.0.1"
sphinx_rtd_theme = "^1.2.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"