-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
37 lines (34 loc) · 983 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
35
36
37
[tool.poetry]
name = "nr-app"
version = "0.1.0"
description = ""
authors = ["Dmitry Figol <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
nornir = "^3"
colorama = "*"
textfsm = "^1"
matplotlib = "^3"
requests = "^2"
networkx = "^2"
lxml = "^4"
jupyter = "^1"
httpx = "*"
nornir-utils = "*"
nornir-jinja2 = "*"
scrapli = {extras = ["ssh2", "textfsm", "paramiko", "genie", "asyncssh"], version = "*", allow-prereleases = true }
scrapli-netconf = { version = "*", allow-prereleases = true }
scrapli-cfg = { git = "https://github.com/scrapli/scrapli_cfg.git", branch = "main", allow-prereleases = true }
nornir-scrapli = { git = "https://github.com/scrapli/nornir_scrapli", branch = "develop"}
"ruamel.yaml" = "*"
genie = "^21.3"
pyats = "^21.3"
[tool.poetry.dev-dependencies]
bpython = "*"
pdbpp = "*"
black = {version = "*", allow-prereleases = true}
flake8 = "*"
mypy = "*"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"