ssot-registry 0.2.14.dev1__tar.gz → 0.2.15.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_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/PKG-INFO +11 -9
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/README.md +7 -5
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/pyproject.toml +4 -4
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/PKG-INFO +11 -9
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/requires.txt +3 -3
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/setup.cfg +0 -0
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/SOURCES.txt +0 -0
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/dependency_links.txt +0 -0
- {ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-registry
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.15.dev2
|
|
4
4
|
Summary: Umbrella distribution for SSOT that installs the core runtime and primary CLI together.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -36,9 +36,9 @@ Classifier: Topic :: System :: Archiving :: Packaging
|
|
|
36
36
|
Classifier: Topic :: Utilities
|
|
37
37
|
Requires-Python: <3.14,>=3.10
|
|
38
38
|
Description-Content-Type: text/markdown
|
|
39
|
-
Requires-Dist: ssot-core==0.2.
|
|
40
|
-
Requires-Dist: ssot-cli<0.2.0,>=0.1.9.
|
|
41
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
39
|
+
Requires-Dist: ssot-core==0.2.15.dev2
|
|
40
|
+
Requires-Dist: ssot-cli<0.2.0,>=0.1.9.dev4
|
|
41
|
+
Requires-Dist: ssot-contracts==0.2.15.dev2
|
|
42
42
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
43
43
|
Provides-Extra: tui
|
|
44
44
|
Requires-Dist: ssot-tui<0.2.0,>=0.1.2; extra == "tui"
|
|
@@ -59,7 +59,7 @@ Requires-Dist: ssot-tui<0.2.0,>=0.1.2; extra == "all"
|
|
|
59
59
|
|
|
60
60
|
`ssot-registry` is the umbrella distribution for SSOT.
|
|
61
61
|
|
|
62
|
-
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
62
|
+
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package, reusable [ssot-conformance](https://pypi.org/project/ssot-conformance/) checks through the CLI, and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
63
63
|
|
|
64
64
|
- GitHub: https://github.com/groupsum/ssot-registry
|
|
65
65
|
|
|
@@ -100,10 +100,10 @@ ADR and SPEC companion documents are canonically authored as JSON under `.ssot/a
|
|
|
100
100
|
## Install
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
python -m pip install ssot-registry # ssot-core + ssot-cli
|
|
104
|
-
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-tui
|
|
103
|
+
python -m pip install ssot-registry # ssot-core + ssot-cli + ssot-conformance
|
|
104
|
+
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-conformance + ssot-tui
|
|
105
105
|
python -m pip install ssot-core # runtime only
|
|
106
|
-
python -m pip install ssot-cli # CLI + runtime
|
|
106
|
+
python -m pip install ssot-cli # CLI + runtime + conformance harness
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
For local development:
|
|
@@ -188,6 +188,8 @@ ssot-registry registry --help
|
|
|
188
188
|
|
|
189
189
|
CLI screenshots from [ssot-cli](https://pypi.org/project/ssot-cli/):
|
|
190
190
|
|
|
191
|
+
Regenerate all terminal assets with `python scripts/generate_terminal_screenshots.py`.
|
|
192
|
+
|
|
191
193
|

|
|
192
194
|
|
|
193
195
|

|
|
@@ -937,7 +939,7 @@ ssot-registry registry export . --format toml --output .ssot/exports/registry.to
|
|
|
937
939
|
## Package relationships
|
|
938
940
|
|
|
939
941
|
- Package type: umbrella distribution
|
|
940
|
-
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
942
|
+
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-conformance](https://pypi.org/project/ssot-conformance/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
941
943
|
- Optional extras: [ssot-tui](https://pypi.org/project/ssot-tui/)
|
|
942
944
|
- Related packages: [ssot-views](https://pypi.org/project/ssot-views/), [ssot-codegen](https://pypi.org/project/ssot-codegen/)
|
|
943
945
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
`ssot-registry` is the umbrella distribution for SSOT.
|
|
14
14
|
|
|
15
|
-
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
15
|
+
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package, reusable [ssot-conformance](https://pypi.org/project/ssot-conformance/) checks through the CLI, and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
16
16
|
|
|
17
17
|
- GitHub: https://github.com/groupsum/ssot-registry
|
|
18
18
|
|
|
@@ -53,10 +53,10 @@ ADR and SPEC companion documents are canonically authored as JSON under `.ssot/a
|
|
|
53
53
|
## Install
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
python -m pip install ssot-registry # ssot-core + ssot-cli
|
|
57
|
-
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-tui
|
|
56
|
+
python -m pip install ssot-registry # ssot-core + ssot-cli + ssot-conformance
|
|
57
|
+
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-conformance + ssot-tui
|
|
58
58
|
python -m pip install ssot-core # runtime only
|
|
59
|
-
python -m pip install ssot-cli # CLI + runtime
|
|
59
|
+
python -m pip install ssot-cli # CLI + runtime + conformance harness
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
For local development:
|
|
@@ -141,6 +141,8 @@ ssot-registry registry --help
|
|
|
141
141
|
|
|
142
142
|
CLI screenshots from [ssot-cli](https://pypi.org/project/ssot-cli/):
|
|
143
143
|
|
|
144
|
+
Regenerate all terminal assets with `python scripts/generate_terminal_screenshots.py`.
|
|
145
|
+
|
|
144
146
|

|
|
145
147
|
|
|
146
148
|

|
|
@@ -890,7 +892,7 @@ ssot-registry registry export . --format toml --output .ssot/exports/registry.to
|
|
|
890
892
|
## Package relationships
|
|
891
893
|
|
|
892
894
|
- Package type: umbrella distribution
|
|
893
|
-
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
895
|
+
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-conformance](https://pypi.org/project/ssot-conformance/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
894
896
|
- Optional extras: [ssot-tui](https://pypi.org/project/ssot-tui/)
|
|
895
897
|
- Related packages: [ssot-views](https://pypi.org/project/ssot-views/), [ssot-codegen](https://pypi.org/project/ssot-codegen/)
|
|
896
898
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ssot-registry"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.15.dev2"
|
|
8
8
|
description = "Umbrella distribution for SSOT that installs the core runtime and primary CLI together."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10,<3.14"
|
|
@@ -13,9 +13,9 @@ authors = [
|
|
|
13
13
|
{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }
|
|
14
14
|
]
|
|
15
15
|
dependencies = [
|
|
16
|
-
"ssot-core==0.2.
|
|
17
|
-
"ssot-cli>=0.1.9.
|
|
18
|
-
"ssot-contracts==0.2.
|
|
16
|
+
"ssot-core==0.2.15.dev2",
|
|
17
|
+
"ssot-cli>=0.1.9.dev4,<0.2.0",
|
|
18
|
+
"ssot-contracts==0.2.15.dev2",
|
|
19
19
|
"tomli>=2.0.1; python_version < '3.11'",
|
|
20
20
|
]
|
|
21
21
|
keywords = ["ssot", "bundle", "registry", "cli", "governance", "release-management", "developer-tools"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-registry
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.15.dev2
|
|
4
4
|
Summary: Umbrella distribution for SSOT that installs the core runtime and primary CLI together.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -36,9 +36,9 @@ Classifier: Topic :: System :: Archiving :: Packaging
|
|
|
36
36
|
Classifier: Topic :: Utilities
|
|
37
37
|
Requires-Python: <3.14,>=3.10
|
|
38
38
|
Description-Content-Type: text/markdown
|
|
39
|
-
Requires-Dist: ssot-core==0.2.
|
|
40
|
-
Requires-Dist: ssot-cli<0.2.0,>=0.1.9.
|
|
41
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
39
|
+
Requires-Dist: ssot-core==0.2.15.dev2
|
|
40
|
+
Requires-Dist: ssot-cli<0.2.0,>=0.1.9.dev4
|
|
41
|
+
Requires-Dist: ssot-contracts==0.2.15.dev2
|
|
42
42
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
43
43
|
Provides-Extra: tui
|
|
44
44
|
Requires-Dist: ssot-tui<0.2.0,>=0.1.2; extra == "tui"
|
|
@@ -59,7 +59,7 @@ Requires-Dist: ssot-tui<0.2.0,>=0.1.2; extra == "all"
|
|
|
59
59
|
|
|
60
60
|
`ssot-registry` is the umbrella distribution for SSOT.
|
|
61
61
|
|
|
62
|
-
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
62
|
+
It installs [ssot-core](https://pypi.org/project/ssot-core/) and [ssot-cli](https://pypi.org/project/ssot-cli/) together so users get the canonical `ssot_registry` Python package, reusable [ssot-conformance](https://pypi.org/project/ssot-conformance/) checks through the CLI, and the primary command surface in one install. The optional `tui` extra adds [ssot-tui](https://pypi.org/project/ssot-tui/).
|
|
63
63
|
|
|
64
64
|
- GitHub: https://github.com/groupsum/ssot-registry
|
|
65
65
|
|
|
@@ -100,10 +100,10 @@ ADR and SPEC companion documents are canonically authored as JSON under `.ssot/a
|
|
|
100
100
|
## Install
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
python -m pip install ssot-registry # ssot-core + ssot-cli
|
|
104
|
-
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-tui
|
|
103
|
+
python -m pip install ssot-registry # ssot-core + ssot-cli + ssot-conformance
|
|
104
|
+
python -m pip install "ssot-registry[tui]" # ssot-core + ssot-cli + ssot-conformance + ssot-tui
|
|
105
105
|
python -m pip install ssot-core # runtime only
|
|
106
|
-
python -m pip install ssot-cli # CLI + runtime
|
|
106
|
+
python -m pip install ssot-cli # CLI + runtime + conformance harness
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
For local development:
|
|
@@ -188,6 +188,8 @@ ssot-registry registry --help
|
|
|
188
188
|
|
|
189
189
|
CLI screenshots from [ssot-cli](https://pypi.org/project/ssot-cli/):
|
|
190
190
|
|
|
191
|
+
Regenerate all terminal assets with `python scripts/generate_terminal_screenshots.py`.
|
|
192
|
+
|
|
191
193
|

|
|
192
194
|
|
|
193
195
|

|
|
@@ -937,7 +939,7 @@ ssot-registry registry export . --format toml --output .ssot/exports/registry.to
|
|
|
937
939
|
## Package relationships
|
|
938
940
|
|
|
939
941
|
- Package type: umbrella distribution
|
|
940
|
-
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
942
|
+
- Depends on: [ssot-core](https://pypi.org/project/ssot-core/), [ssot-cli](https://pypi.org/project/ssot-cli/), [ssot-conformance](https://pypi.org/project/ssot-conformance/), [ssot-contracts](https://pypi.org/project/ssot-contracts/)
|
|
941
943
|
- Optional extras: [ssot-tui](https://pypi.org/project/ssot-tui/)
|
|
942
944
|
- Related packages: [ssot-views](https://pypi.org/project/ssot-views/), [ssot-codegen](https://pypi.org/project/ssot-codegen/)
|
|
943
945
|
|
|
File without changes
|
|
File without changes
|
{ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ssot_registry-0.2.14.dev1 → ssot_registry-0.2.15.dev2}/ssot_registry.egg-info/top_level.txt
RENAMED
|
File without changes
|