ssot-views 0.2.18.dev9__tar.gz → 0.2.19.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/PKG-INFO +2 -2
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/pyproject.toml +2 -2
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/graph/export_json.py +2 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/PKG-INFO +2 -2
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/requires.txt +1 -1
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/README.md +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/setup.cfg +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/__init__.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/graph/__init__.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/graph/export_dot.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/__init__.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/certification_report.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/summary.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/validation_report.py +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/SOURCES.txt +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/dependency_links.txt +0 -0
- {ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-views
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19.dev2
|
|
4
4
|
Summary: Derived projections, reports, and graph exports for SSOT.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -27,7 +27,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
27
27
|
Classifier: Topic :: Utilities
|
|
28
28
|
Requires-Python: <3.15,>=3.10
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
30
|
+
Requires-Dist: ssot-contracts==0.2.19.dev2
|
|
31
31
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
32
32
|
|
|
33
33
|
<div align="center">
|
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ssot-views"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.19.dev2"
|
|
8
8
|
description = "Derived projections, reports, and graph exports for SSOT."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10,<3.15"
|
|
11
11
|
license = "Apache-2.0"
|
|
12
12
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
13
13
|
dependencies = [
|
|
14
|
-
"ssot-contracts==0.2.
|
|
14
|
+
"ssot-contracts==0.2.19.dev2",
|
|
15
15
|
"tomli>=2.0.1; python_version < '3.11'",
|
|
16
16
|
]
|
|
17
17
|
keywords = ["ssot", "views", "reports", "graph", "projections", "visualization", "registry"]
|
|
@@ -33,6 +33,8 @@ def build_graph_json(registry: dict[str, object]) -> dict[str, object]:
|
|
|
33
33
|
edges.append({"type": "INCLUDES", "from": release["id"], "to": evidence_id})
|
|
34
34
|
|
|
35
35
|
for feature in registry.get("features", []):
|
|
36
|
+
for parent_feature_id in feature.get("parent_feature_ids", []):
|
|
37
|
+
edges.append({"type": "CONTAINS", "from": parent_feature_id, "to": feature["id"]})
|
|
36
38
|
for spec_id in feature.get("spec_ids", []):
|
|
37
39
|
edges.append({"type": "SPECIFIED_BY", "from": feature["id"], "to": spec_id})
|
|
38
40
|
for required_feature_id in feature.get("requires", []):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-views
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19.dev2
|
|
4
4
|
Summary: Derived projections, reports, and graph exports for SSOT.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -27,7 +27,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
27
27
|
Classifier: Topic :: Utilities
|
|
28
28
|
Requires-Python: <3.15,>=3.10
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
30
|
+
Requires-Dist: ssot-contracts==0.2.19.dev2
|
|
31
31
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
32
32
|
|
|
33
33
|
<div align="center">
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/certification_report.py
RENAMED
|
File without changes
|
|
File without changes
|
{ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views/reports/validation_report.py
RENAMED
|
File without changes
|
|
File without changes
|
{ssot_views-0.2.18.dev9 → ssot_views-0.2.19.dev2}/src/ssot_views.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|