-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.16 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
[tool.poetry]
name = "pytest-netconf"
version = "0.1.1"
description = "A pytest plugin that provides a mock NETCONF (RFC6241/RFC6242) server for local testing."
authors = ["Adam Kirchberger <adam.kirchberger@nomios.co.uk>"]
license = "Apache License 2.0"
readme = "README.md"
keywords = [
"Netconf",
"Network automation",
"Network engineering",
"Network testing"
]
classifiers = [
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Topic :: System :: Networking",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
ncclient = "^0.6.15"
pytest-rerunfailures = "^14.0"
scrapli-netconf = "^2024.7.30"
netconf-client = "^3.1.1"
coverage = "^7.6.1"
[tool.pytest.ini_options]
addopts = "--reruns 1 -vv"
[tool.poetry.dependencies]
python = "^3.8"
paramiko = "^3.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins.pytest11]
pytest_netconf = "pytest_netconf.pytest_plugin"