tecrax 0.0.0__py3-none-any.whl
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.
- tecrax/__init__.py +3 -0
- tecrax/cli.py +15 -0
- tecrax-0.0.0.dist-info/METADATA +36 -0
- tecrax-0.0.0.dist-info/RECORD +7 -0
- tecrax-0.0.0.dist-info/WHEEL +4 -0
- tecrax-0.0.0.dist-info/entry_points.txt +2 -0
- tecrax-0.0.0.dist-info/licenses/LICENSE +21 -0
tecrax/__init__.py
ADDED
tecrax/cli.py
ADDED
|
@@ -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())
|
|
@@ -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.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
tecrax/__init__.py,sha256=W0zxElstokgNbKq4j1ncW_yxeEjp5bM-AkowhOSzOJM,71
|
|
2
|
+
tecrax/cli.py,sha256=iAOixU-g1ti_7knBNCbnkw3CQc0dvNPWuKd07rf38Ek,331
|
|
3
|
+
tecrax-0.0.0.dist-info/METADATA,sha256=c4LRtp-Hyfy-Sk8rmZVUBtUHeXK7_a0PQ-0YmMK2xEk,1449
|
|
4
|
+
tecrax-0.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
tecrax-0.0.0.dist-info/entry_points.txt,sha256=BUsfTkF0C1d1rMmuTCVeVKl2YRPSI17LqL1lAxPTX5U,43
|
|
6
|
+
tecrax-0.0.0.dist-info/licenses/LICENSE,sha256=-vIX9hW-hUhufZYZaOeLjuwDYBeDVfZwevdHf77dHHI,1074
|
|
7
|
+
tecrax-0.0.0.dist-info/RECORD,,
|
|
@@ -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.
|