ssot-codegen 0.2.7__tar.gz → 0.2.8__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.
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ssot-codegen
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: Generators for SSOT contract, CLI, and TUI artifacts.
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/groupsum/ssot-registry
8
- Project-URL: Repository, https://github.com/groupsum/ssot-registry
7
+ Project-URL: Homepage, https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen
8
+ Project-URL: Repository, https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen
9
9
  Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
10
10
  Keywords: ssot,codegen,generators,contracts,metadata,automation,registry
11
11
  Classifier: Development Status :: 3 - Alpha
@@ -25,8 +25,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Topic :: Utilities
26
26
  Requires-Python: <3.14,>=3.10
27
27
  Description-Content-Type: text/markdown
28
- Requires-Dist: ssot-contracts==0.2.7
29
- Requires-Dist: ssot-views==0.2.7
28
+ Requires-Dist: ssot-contracts==0.2.8
29
+ Requires-Dist: ssot-views==0.2.8
30
30
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
31
31
 
32
32
  <div align="center">
@@ -61,11 +61,11 @@ Use `ssot-codegen` when you want:
61
61
 
62
62
  Use another package when you want:
63
63
 
64
- - `ssot-cli` for the main user-facing CLI
65
- - `ssot-registry` for the core runtime and Python APIs
66
- - `ssot-contracts` for the packaged artifacts themselves
67
- - `ssot-tui` for terminal UI access
68
- - `ssot-views` for report and graph builders
64
+ - [ssot-cli](https://pypi.org/project/ssot-cli/) for the main user-facing CLI
65
+ - [ssot-registry](https://pypi.org/project/ssot-registry/) for the core runtime and Python APIs
66
+ - [ssot-contracts](https://pypi.org/project/ssot-contracts/) for the packaged artifacts themselves
67
+ - [ssot-tui](https://pypi.org/project/ssot-tui/) for terminal UI access
68
+ - [ssot-views](https://pypi.org/project/ssot-views/) for report and graph builders
69
69
 
70
70
  ## Install
71
71
 
@@ -127,7 +127,7 @@ for path in written:
127
127
  ## Package relationships
128
128
 
129
129
  - Package type: development/code-generation package
130
- - Depends on: `ssot-contracts`, `ssot-views`
130
+ - Depends on: [ssot-contracts](https://pypi.org/project/ssot-contracts/), [ssot-views](https://pypi.org/project/ssot-views/)
131
131
  - Consumed by: maintainers and release tooling that regenerate derived metadata artifacts
132
132
 
133
133
  If you are using SSOT as an application or library, you usually do not need this package directly. It is primarily for maintainers working on the SSOT workspace itself.
@@ -30,11 +30,11 @@ Use `ssot-codegen` when you want:
30
30
 
31
31
  Use another package when you want:
32
32
 
33
- - `ssot-cli` for the main user-facing CLI
34
- - `ssot-registry` for the core runtime and Python APIs
35
- - `ssot-contracts` for the packaged artifacts themselves
36
- - `ssot-tui` for terminal UI access
37
- - `ssot-views` for report and graph builders
33
+ - [ssot-cli](https://pypi.org/project/ssot-cli/) for the main user-facing CLI
34
+ - [ssot-registry](https://pypi.org/project/ssot-registry/) for the core runtime and Python APIs
35
+ - [ssot-contracts](https://pypi.org/project/ssot-contracts/) for the packaged artifacts themselves
36
+ - [ssot-tui](https://pypi.org/project/ssot-tui/) for terminal UI access
37
+ - [ssot-views](https://pypi.org/project/ssot-views/) for report and graph builders
38
38
 
39
39
  ## Install
40
40
 
@@ -96,7 +96,7 @@ for path in written:
96
96
  ## Package relationships
97
97
 
98
98
  - Package type: development/code-generation package
99
- - Depends on: `ssot-contracts`, `ssot-views`
99
+ - Depends on: [ssot-contracts](https://pypi.org/project/ssot-contracts/), [ssot-views](https://pypi.org/project/ssot-views/)
100
100
  - Consumed by: maintainers and release tooling that regenerate derived metadata artifacts
101
101
 
102
102
  If you are using SSOT as an application or library, you usually do not need this package directly. It is primarily for maintainers working on the SSOT workspace itself.
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ssot-codegen"
7
- version = "0.2.7"
7
+ version = "0.2.8"
8
8
  description = "Generators for SSOT contract, CLI, and TUI artifacts."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10,<3.14"
11
11
  license = "Apache-2.0"
12
12
  authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
13
13
  dependencies = [
14
- "ssot-contracts==0.2.7",
15
- "ssot-views==0.2.7",
14
+ "ssot-contracts==0.2.8",
15
+ "ssot-views==0.2.8",
16
16
  "tomli>=2.0.1; python_version < '3.11'",
17
17
  ]
18
18
  keywords = ["ssot", "codegen", "generators", "contracts", "metadata", "automation", "registry"]
@@ -38,8 +38,8 @@ classifiers = [
38
38
  ssot-codegen = "ssot_codegen.main:main"
39
39
 
40
40
  [project.urls]
41
- Homepage = "https://github.com/groupsum/ssot-registry"
42
- Repository = "https://github.com/groupsum/ssot-registry"
41
+ Homepage = "https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen"
42
+ Repository = "https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen"
43
43
  Issues = "https://github.com/groupsum/ssot-registry/issues"
44
44
 
45
45
  [tool.setuptools]
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ssot-codegen
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: Generators for SSOT contract, CLI, and TUI artifacts.
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/groupsum/ssot-registry
8
- Project-URL: Repository, https://github.com/groupsum/ssot-registry
7
+ Project-URL: Homepage, https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen
8
+ Project-URL: Repository, https://github.com/groupsum/ssot-registry/tree/main/pkgs/ssot-codegen
9
9
  Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
10
10
  Keywords: ssot,codegen,generators,contracts,metadata,automation,registry
11
11
  Classifier: Development Status :: 3 - Alpha
@@ -25,8 +25,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Topic :: Utilities
26
26
  Requires-Python: <3.14,>=3.10
27
27
  Description-Content-Type: text/markdown
28
- Requires-Dist: ssot-contracts==0.2.7
29
- Requires-Dist: ssot-views==0.2.7
28
+ Requires-Dist: ssot-contracts==0.2.8
29
+ Requires-Dist: ssot-views==0.2.8
30
30
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
31
31
 
32
32
  <div align="center">
@@ -61,11 +61,11 @@ Use `ssot-codegen` when you want:
61
61
 
62
62
  Use another package when you want:
63
63
 
64
- - `ssot-cli` for the main user-facing CLI
65
- - `ssot-registry` for the core runtime and Python APIs
66
- - `ssot-contracts` for the packaged artifacts themselves
67
- - `ssot-tui` for terminal UI access
68
- - `ssot-views` for report and graph builders
64
+ - [ssot-cli](https://pypi.org/project/ssot-cli/) for the main user-facing CLI
65
+ - [ssot-registry](https://pypi.org/project/ssot-registry/) for the core runtime and Python APIs
66
+ - [ssot-contracts](https://pypi.org/project/ssot-contracts/) for the packaged artifacts themselves
67
+ - [ssot-tui](https://pypi.org/project/ssot-tui/) for terminal UI access
68
+ - [ssot-views](https://pypi.org/project/ssot-views/) for report and graph builders
69
69
 
70
70
  ## Install
71
71
 
@@ -127,7 +127,7 @@ for path in written:
127
127
  ## Package relationships
128
128
 
129
129
  - Package type: development/code-generation package
130
- - Depends on: `ssot-contracts`, `ssot-views`
130
+ - Depends on: [ssot-contracts](https://pypi.org/project/ssot-contracts/), [ssot-views](https://pypi.org/project/ssot-views/)
131
131
  - Consumed by: maintainers and release tooling that regenerate derived metadata artifacts
132
132
 
133
133
  If you are using SSOT as an application or library, you usually do not need this package directly. It is primarily for maintainers working on the SSOT workspace itself.
@@ -1,5 +1,5 @@
1
- ssot-contracts==0.2.7
2
- ssot-views==0.2.7
1
+ ssot-contracts==0.2.8
2
+ ssot-views==0.2.8
3
3
 
4
4
  [:python_version < "3.11"]
5
5
  tomli>=2.0.1
File without changes