-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
pyproject.toml
72 lines (65 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["poetry>=1.6.1"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "netmiko"
version = "5.0.0"
description = "Multi-vendor library to simplify legacy CLI connections to network devices"
authors = ["Kirk Byers <ktbyers@twb-tech.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ktbyers/netmiko"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
paramiko = ">=2.9.5"
scp = ">=0.13.6"
pyyaml = ">=6.0.2"
textfsm = ">=1.1.3"
ntc-templates = ">=3.1.0"
pyserial = ">=3.3"
rich = ">=13.8"
"ruamel.yaml" = ">=0.17"
[tool.poetry.group.dev.dependencies]
black = "24.8.0"
mypy = "1.11.2"
mypy-extensions = "1.0.0"
pytest = "8.3.3"
pyflakes = "3.2.0"
pylama = "8.4.1"
twine = "5.1.1"
docutils = "0.21.2"
pysnmp = "6.2.6"
pdoc3 = "0.11.1"
types-paramiko = "3.5.0.20240918"
types-PyYAML = "6.0.12.20240917"
setuptools = ">=65.0.0"
[tool.poetry.group.parsers]
optional = true
[tool.poetry.group.parsers.dependencies]
pyats = ">=24.5"
genie = ">=24.5"
ttp = ">=0.9.5"
[tool.poetry.scripts]
"netmiko-grep" = "netmiko.cli_tools.netmiko_grep:main_ep"
"netmiko-show" = "netmiko.cli_tools.netmiko_show:main_ep"
"netmiko-cfg" = "netmiko.cli_tools.netmiko_cfg:main_ep"
"netmiko-encrypt" = "netmiko.cli_tools.netmiko_encrypt:main_ep"
"netmiko-bulk-encrypt" = "netmiko.cli_tools.netmiko_bulk_encrypt:main_ep"
[tool.black]
exclude = '''
/(
\.git
| \.venv
| build
| dist
| netmiko/_telnetlib
)/
'''