pgs-runtime 0.2.1__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.
- pgs_runtime-0.2.1/PKG-INFO +27 -0
- pgs_runtime-0.2.1/README.md +17 -0
- pgs_runtime-0.2.1/pgs_runtime/__init__.py +1 -0
- pgs_runtime-0.2.1/pgs_runtime.egg-info/PKG-INFO +27 -0
- pgs_runtime-0.2.1/pgs_runtime.egg-info/SOURCES.txt +7 -0
- pgs_runtime-0.2.1/pgs_runtime.egg-info/dependency_links.txt +1 -0
- pgs_runtime-0.2.1/pgs_runtime.egg-info/top_level.txt +1 -0
- pgs_runtime-0.2.1/pyproject.toml +20 -0
- pgs_runtime-0.2.1/setup.cfg +4 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pgs-runtime
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Successor package lineage for OmniBachi runtime
|
|
5
|
+
Author: Bhash Ganti aka Bachi
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/bachipeachy/pgs_runtime
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# pgs-runtime
|
|
12
|
+
|
|
13
|
+
`pgs-runtime` is the successor package lineage to `omnibachi`.
|
|
14
|
+
|
|
15
|
+
`omnibachi==0.2.1` is the final OmniBachi symbolic runtime release.
|
|
16
|
+
|
|
17
|
+
Active development begins with:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install pgs-runtime>=0.3.0
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
PGS Runtime v0.3.x introduces the token-native deterministic runtime architecture and Compiler/Runtime Inversion model.
|
|
25
|
+
|
|
26
|
+
Historical package:
|
|
27
|
+
https://pypi.org/project/omnibachi/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# pgs-runtime
|
|
2
|
+
|
|
3
|
+
`pgs-runtime` is the successor package lineage to `omnibachi`.
|
|
4
|
+
|
|
5
|
+
`omnibachi==0.2.1` is the final OmniBachi symbolic runtime release.
|
|
6
|
+
|
|
7
|
+
Active development begins with:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install pgs-runtime>=0.3.0
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
PGS Runtime v0.3.x introduces the token-native deterministic runtime architecture and Compiler/Runtime Inversion model.
|
|
15
|
+
|
|
16
|
+
Historical package:
|
|
17
|
+
https://pypi.org/project/omnibachi/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.1"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pgs-runtime
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Successor package lineage for OmniBachi runtime
|
|
5
|
+
Author: Bhash Ganti aka Bachi
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/bachipeachy/pgs_runtime
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# pgs-runtime
|
|
12
|
+
|
|
13
|
+
`pgs-runtime` is the successor package lineage to `omnibachi`.
|
|
14
|
+
|
|
15
|
+
`omnibachi==0.2.1` is the final OmniBachi symbolic runtime release.
|
|
16
|
+
|
|
17
|
+
Active development begins with:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install pgs-runtime>=0.3.0
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
PGS Runtime v0.3.x introduces the token-native deterministic runtime architecture and Compiler/Runtime Inversion model.
|
|
25
|
+
|
|
26
|
+
Historical package:
|
|
27
|
+
https://pypi.org/project/omnibachi/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pgs_runtime
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pgs-runtime"
|
|
7
|
+
version = "0.2.1"
|
|
8
|
+
description = "Successor package lineage for OmniBachi runtime"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = {text = "Apache-2.0"}
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Bhash Ganti aka Bachi"}
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
urls = {Homepage = "https://github.com/bachipeachy/pgs_runtime"}
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.packages.find]
|
|
20
|
+
include = ["pgs_runtime"]
|