forked from ChelseaKR/oscal-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (20 loc) · 731 Bytes
/
Copy path__init__.py
File metadata and controls
25 lines (20 loc) · 731 Bytes
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
"""oscal-validate: deterministic structural validation for OSCAL documents.
Structural conformance is not evidence that a control is implemented. This
tool checks documents; it does not assess systems.
"""
from __future__ import annotations
#: Pinned to pyproject.toml's version by tests/test_cli.py. Not read from
#: importlib.metadata: the GitHub Action runs this package straight off
#: PYTHONPATH with nothing installed, and there is no distribution to ask.
__version__ = "0.2.0"
from .findings import Finding, Rule, Severity
from .validator import build_session, validate, validate_file
__all__ = [
"Finding",
"Rule",
"Severity",
"__version__",
"build_session",
"validate",
"validate_file",
]