tecrax 0.0.0__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.
@@ -0,0 +1,6 @@
1
+ /dist/
2
+ /build/
3
+ *.egg-info/
4
+ .venv/
5
+ __pycache__/
6
+ .pytest_cache/
tecrax-0.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Krzysztof Probola
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
tecrax-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: tecrax
3
+ Version: 0.0.0
4
+ Summary: Governed infrastructure-operations runtime/profile built on GovEngine and SCLite.
5
+ Project-URL: Homepage, https://github.com/rozmiarD/tecrax
6
+ Project-URL: Repository, https://github.com/rozmiarD/tecrax
7
+ Author: Krzysztof Probola
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: govengine,governance,infrastructure,operations,sclite
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: System Administrators
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: System :: Systems Administration
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+
22
+ # Tecrax
23
+
24
+ Tecrax is a governed infrastructure-operations runtime/profile built on GovEngine and SCLite.
25
+
26
+ This repository/package is currently a namespace reservation placeholder. It does not execute infrastructure changes, connect to hosts, manage credentials, or provide production operational capability.
27
+
28
+ Planned foundation:
29
+
30
+ ```text
31
+ Tecrax -> GovEngine -> SCLite
32
+ ```
33
+
34
+ - SCLite owns lifecycle/proof/review artifacts.
35
+ - GovEngine owns deterministic governed-runtime kernel mechanics.
36
+ - Tecrax will own infrastructure-operations domain semantics, UX, and host integrations when those boundaries are mature.
tecrax-0.0.0/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Tecrax
2
+
3
+ Tecrax is a governed infrastructure-operations runtime/profile built on GovEngine and SCLite.
4
+
5
+ This repository/package is currently a namespace reservation placeholder. It does not execute infrastructure changes, connect to hosts, manage credentials, or provide production operational capability.
6
+
7
+ Planned foundation:
8
+
9
+ ```text
10
+ Tecrax -> GovEngine -> SCLite
11
+ ```
12
+
13
+ - SCLite owns lifecycle/proof/review artifacts.
14
+ - GovEngine owns deterministic governed-runtime kernel mechanics.
15
+ - Tecrax will own infrastructure-operations domain semantics, UX, and host integrations when those boundaries are mature.
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.21"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tecrax"
7
+ version = "0.0.0"
8
+ description = "Governed infrastructure-operations runtime/profile built on GovEngine and SCLite."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Krzysztof Probola" }]
13
+ keywords = ["governance", "infrastructure", "operations", "sclite", "govengine"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Environment :: Console",
17
+ "Intended Audience :: System Administrators",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Topic :: System :: Systems Administration",
23
+ ]
24
+ dependencies = []
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/rozmiarD/tecrax"
28
+ Repository = "https://github.com/rozmiarD/tecrax"
29
+
30
+ [project.scripts]
31
+ tecrax = "tecrax.cli:main"
32
+
33
+ [tool.hatch.build.targets.wheel]
34
+ packages = ["src/tecrax"]
@@ -0,0 +1,3 @@
1
+ """Tecrax namespace reservation placeholder."""
2
+
3
+ __version__ = "0.0.0"
@@ -0,0 +1,15 @@
1
+ """Tecrax placeholder CLI."""
2
+
3
+ from __future__ import annotations
4
+
5
+
6
+ def main() -> int:
7
+ print(
8
+ "Tecrax 0.0.0 placeholder: governed infrastructure-operations "
9
+ "runtime/profile namespace reserved; no operational capability is enabled."
10
+ )
11
+ return 0
12
+
13
+
14
+ if __name__ == "__main__":
15
+ raise SystemExit(main())