ssot-codegen 0.2.5__tar.gz → 0.2.7__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_codegen-0.2.5 → ssot_codegen-0.2.7}/PKG-INFO +7 -4
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/pyproject.toml +7 -4
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/PKG-INFO +7 -4
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/requires.txt +2 -2
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/README.md +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/setup.cfg +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen/__init__.py +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen/generator.py +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen/main.py +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/SOURCES.txt +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/dependency_links.txt +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/entry_points.txt +0 -0
- {ssot_codegen-0.2.5 → ssot_codegen-0.2.7}/src/ssot_codegen.egg-info/top_level.txt +0 -0
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-codegen
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
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
7
|
Project-URL: Homepage, https://github.com/groupsum/ssot-registry
|
|
8
8
|
Project-URL: Repository, https://github.com/groupsum/ssot-registry
|
|
9
9
|
Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
|
|
10
|
-
Keywords: ssot,codegen,generators,contracts
|
|
10
|
+
Keywords: ssot,codegen,generators,contracts,metadata,automation,registry
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Environment :: Console
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
15
|
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: Python :: 3
|
|
16
17
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -19,11 +20,13 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Topic :: Software Development :: Code Generators
|
|
23
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
22
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: Topic :: Utilities
|
|
23
26
|
Requires-Python: <3.14,>=3.10
|
|
24
27
|
Description-Content-Type: text/markdown
|
|
25
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
26
|
-
Requires-Dist: ssot-views==0.2.
|
|
28
|
+
Requires-Dist: ssot-contracts==0.2.7
|
|
29
|
+
Requires-Dist: ssot-views==0.2.7
|
|
27
30
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
28
31
|
|
|
29
32
|
<div align="center">
|
|
@@ -4,22 +4,23 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ssot-codegen"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.7"
|
|
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.
|
|
15
|
-
"ssot-views==0.2.
|
|
14
|
+
"ssot-contracts==0.2.7",
|
|
15
|
+
"ssot-views==0.2.7",
|
|
16
16
|
"tomli>=2.0.1; python_version < '3.11'",
|
|
17
17
|
]
|
|
18
|
-
keywords = ["ssot", "codegen", "generators", "contracts"]
|
|
18
|
+
keywords = ["ssot", "codegen", "generators", "contracts", "metadata", "automation", "registry"]
|
|
19
19
|
classifiers = [
|
|
20
20
|
"Development Status :: 3 - Alpha",
|
|
21
21
|
"Environment :: Console",
|
|
22
22
|
"Intended Audience :: Developers",
|
|
23
|
+
"Intended Audience :: Information Technology",
|
|
23
24
|
"Operating System :: OS Independent",
|
|
24
25
|
"Programming Language :: Python :: 3",
|
|
25
26
|
"Programming Language :: Python :: 3 :: Only",
|
|
@@ -28,7 +29,9 @@ classifiers = [
|
|
|
28
29
|
"Programming Language :: Python :: 3.12",
|
|
29
30
|
"Programming Language :: Python :: 3.13",
|
|
30
31
|
"Topic :: Software Development :: Code Generators",
|
|
32
|
+
"Topic :: Software Development :: Documentation",
|
|
31
33
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
34
|
+
"Topic :: Utilities",
|
|
32
35
|
]
|
|
33
36
|
|
|
34
37
|
[project.scripts]
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-codegen
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
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
7
|
Project-URL: Homepage, https://github.com/groupsum/ssot-registry
|
|
8
8
|
Project-URL: Repository, https://github.com/groupsum/ssot-registry
|
|
9
9
|
Project-URL: Issues, https://github.com/groupsum/ssot-registry/issues
|
|
10
|
-
Keywords: ssot,codegen,generators,contracts
|
|
10
|
+
Keywords: ssot,codegen,generators,contracts,metadata,automation,registry
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Environment :: Console
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
15
|
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: Python :: 3
|
|
16
17
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -19,11 +20,13 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Topic :: Software Development :: Code Generators
|
|
23
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
22
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: Topic :: Utilities
|
|
23
26
|
Requires-Python: <3.14,>=3.10
|
|
24
27
|
Description-Content-Type: text/markdown
|
|
25
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
26
|
-
Requires-Dist: ssot-views==0.2.
|
|
28
|
+
Requires-Dist: ssot-contracts==0.2.7
|
|
29
|
+
Requires-Dist: ssot-views==0.2.7
|
|
27
30
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
28
31
|
|
|
29
32
|
<div align="center">
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|