ssot-codegen 0.2.17.dev2__tar.gz → 0.2.18.dev9__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.17.dev2 → ssot_codegen-0.2.18.dev9}/PKG-INFO +5 -4
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/pyproject.toml +5 -4
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/PKG-INFO +5 -4
- ssot_codegen-0.2.18.dev9/src/ssot_codegen.egg-info/requires.txt +5 -0
- ssot_codegen-0.2.17.dev2/src/ssot_codegen.egg-info/requires.txt +0 -5
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/README.md +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/setup.cfg +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen/__init__.py +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen/generator.py +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen/main.py +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/SOURCES.txt +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/dependency_links.txt +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/entry_points.txt +0 -0
- {ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-codegen
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.18.dev9
|
|
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
|
|
@@ -19,14 +19,15 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
23
|
Classifier: Topic :: Software Development :: Code Generators
|
|
23
24
|
Classifier: Topic :: Software Development :: Documentation
|
|
24
25
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
26
|
Classifier: Topic :: Utilities
|
|
26
|
-
Requires-Python: <3.
|
|
27
|
+
Requires-Python: <3.15,>=3.10
|
|
27
28
|
Description-Content-Type: text/markdown
|
|
28
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
29
|
-
Requires-Dist: ssot-views==0.2.
|
|
29
|
+
Requires-Dist: ssot-contracts==0.2.18.dev9
|
|
30
|
+
Requires-Dist: ssot-views==0.2.18.dev9
|
|
30
31
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
31
32
|
|
|
32
33
|
<div align="center">
|
|
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ssot-codegen"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.18.dev9"
|
|
8
8
|
description = "Generators for SSOT contract, CLI, and TUI artifacts."
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.10,<3.
|
|
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.
|
|
15
|
-
"ssot-views==0.2.
|
|
14
|
+
"ssot-contracts==0.2.18.dev9",
|
|
15
|
+
"ssot-views==0.2.18.dev9",
|
|
16
16
|
"tomli>=2.0.1; python_version < '3.11'",
|
|
17
17
|
]
|
|
18
18
|
keywords = ["ssot", "codegen", "generators", "contracts", "metadata", "automation", "registry"]
|
|
@@ -28,6 +28,7 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.11",
|
|
29
29
|
"Programming Language :: Python :: 3.12",
|
|
30
30
|
"Programming Language :: Python :: 3.13",
|
|
31
|
+
"Programming Language :: Python :: 3.14",
|
|
31
32
|
"Topic :: Software Development :: Code Generators",
|
|
32
33
|
"Topic :: Software Development :: Documentation",
|
|
33
34
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ssot-codegen
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.18.dev9
|
|
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
|
|
@@ -19,14 +19,15 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
23
|
Classifier: Topic :: Software Development :: Code Generators
|
|
23
24
|
Classifier: Topic :: Software Development :: Documentation
|
|
24
25
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
26
|
Classifier: Topic :: Utilities
|
|
26
|
-
Requires-Python: <3.
|
|
27
|
+
Requires-Python: <3.15,>=3.10
|
|
27
28
|
Description-Content-Type: text/markdown
|
|
28
|
-
Requires-Dist: ssot-contracts==0.2.
|
|
29
|
-
Requires-Dist: ssot-views==0.2.
|
|
29
|
+
Requires-Dist: ssot-contracts==0.2.18.dev9
|
|
30
|
+
Requires-Dist: ssot-views==0.2.18.dev9
|
|
30
31
|
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
31
32
|
|
|
32
33
|
<div align="center">
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{ssot_codegen-0.2.17.dev2 → ssot_codegen-0.2.18.dev9}/src/ssot_codegen.egg-info/top_level.txt
RENAMED
|
File without changes
|