-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (67 loc) · 1.88 KB
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
73
74
75
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gnmi_cli_lib"
version = "2.7.0"
description = "A modular Python library for converting gNMI JSON responses into SONiC CLI output format"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "SONiC Team"}
]
keywords = ["gnmi", "sonic", "cli", "network", "switch"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"tabulate>=0.9.0",
"natsort>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
gnmi-cli-convert = "gnmi_cli_lib.cli:main"
[project.urls]
Homepage = "https://github.com/sonic-net/sonic-gnmi"
Documentation = "https://github.com/sonic-net/sonic-gnmi"
Repository = "https://github.com/sonic-net/sonic-gnmi"
[tool.coverage.run]
source = ["gnmi_cli_lib"]
omit = [
"tests/*",
]
[tool.coverage.report]
show_missing = true
fail_under = 80
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]
[tool.coverage.html]
directory = "htmlcov"
[tool.setuptools]
packages = [
"gnmi_cli_lib",
"gnmi_cli_lib.common",
"gnmi_cli_lib.formatters",
"gnmi_cli_lib.utils",
]