-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (52 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
54
55
[project]
name = "nogfi-hackathon"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "t1rasane", email = "[email protected]" }
]
dependencies = [
"napalm~=5.0.0",
"nornir~=3.4.1",
"pynetbox~=7.4.0",
"fakenos~=1.0.1",
"pydantic~=2.8.2",
"pydantic-settings~=2.4.0",
"scrapli[asyncssh]~=2024.7.30",
"genie~=24.7",
"pyats~=24.7",
"napalm-h3c-comware~=0.1.5",
"napalm-ftos @ git+https://github.com/napalm-automation-community/napalm-ftos",
"napalm-ros @ git+https://github.com/napalm-automation-community/napalm-ros",
"napalm-arubaos-switch~=0.2.0",
"napalm-huawei-vrp~=1.2.0",
"scrapli-netconf~=2024.7.30",
"nornir-napalm~=0.5.0",
"nornir-netmiko~=1.0.1",
"httpx~=0.27.2",
"loguru~=0.7.2",
"click~=8.1.7",
"english-words~=2.0.1",
"pygnmi~=0.8.14",
"nornir-pygnmi~=0.2.0",
"pyang~=2.6.1",
"intspan~=1.6.1",
"ansible~=10.3.0",
"ansible-pylibssh~=1.2.2",
"nornir-utils~=0.2.0",
"pydantify~=0.5.1",
"jxmlease~=1.0.3",
"junos-eznc~=2.7.1",
"napalm-srl~=1.0.5",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
"nogfi-hackathon" = "nogfi_hackathon:main"
"pygnmi-script" = "nogfi_hackathon.examples.pygnmi_6:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.rye]
managed = true
dev-dependencies = []