-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = [
"setuptools>=67.6.0",
"wheel>=0.40.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyats-genie-command-parse"
dynamic = ["version", "readme", "dependencies"]
requires-python = ">=3.9"
description = "Run genie parsers directly."
keywords = [
"pyATS",
"genie",
"cisco",
"ios",
"ios-xr",
"nxos",
"parse",
"wrapper",
]
authors = [
{ name="Benjamin P. Trachtenberg", email="e_ben_75-python@yahoo.com" },
{ name="Brett Gianpetro", email="e_ben_75-python@yahoo.com" },
]
maintainers = [
{name = "Benjamin P. Trachtenberg", email = "e_ben_75-python@yahoo.com"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Documentation = "https://pyats-genie-command-parse.readthedocs.io/en/latest/"
Source = "https://github.com/btr1975/pyats-genie-command-parse"
Tracker = "https://github.com/btr1975/pyats-genie-command-parse/issues"
[tool.setuptools.packages.find]
include = [
"pyats_genie_command_parse*",
]
# Add or remove file extensions to include the data
[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "pyats_genie_command_parse.version.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"generic_tests: marks tests as generic_tests (deselect with -m not generic_tests)",
"ios_tests: marks tests as ios_tests (deselect with -m not ios_tests)",
]
[tool.coverage.run]
command_line= "-m pytest -vvv"
[tool.coverage.report]
include = [
"pyats_genie_command_parse/*"
]
fail_under = 70
[tool.pylint]
max-line-length = 120
# This allows pylint to complain on FIXME and XXX notes
notes = [
"FIXME",
"XXX",
]
fail-under = 9.9