protocol-governed-computing 2.0.0__tar.gz → 3.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.
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/PKG-INFO +19 -16
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/README.md +9 -6
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/protocol_governed_computing.egg-info/PKG-INFO +19 -16
- protocol_governed_computing-3.0.0/protocol_governed_computing.egg-info/requires.txt +11 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/pyproject.toml +10 -10
- protocol_governed_computing-2.0.0/protocol_governed_computing.egg-info/requires.txt +0 -11
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/pgc/__init__.py +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/pgc/cli.py +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/protocol_governed_computing.egg-info/SOURCES.txt +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/protocol_governed_computing.egg-info/dependency_links.txt +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/protocol_governed_computing.egg-info/entry_points.txt +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/protocol_governed_computing.egg-info/top_level.txt +0 -0
- {protocol_governed_computing-2.0.0 → protocol_governed_computing-3.0.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: protocol-governed-computing
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
4
4
|
Summary: Protocol-Governed Computing — installs the full toolchain and reports whether an environment is ready to compile, seal, and execute
|
|
5
5
|
Author-email: Bhash Ganti <bachipeachy@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -15,31 +15,34 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Classifier: Topic :: Software Development :: Compilers
|
|
16
16
|
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: pgc-compiler==
|
|
19
|
-
Requires-Dist: pgc-assembler==
|
|
20
|
-
Requires-Dist: pgc-runtime==
|
|
21
|
-
Requires-Dist: pgc-inspector==
|
|
22
|
-
Requires-Dist: pgc-transformation==
|
|
23
|
-
Requires-Dist: pgc-governance==
|
|
24
|
-
Requires-Dist: pgc-workloads==
|
|
25
|
-
Requires-Dist: pgc-domains==
|
|
18
|
+
Requires-Dist: pgc-compiler==3.0.0
|
|
19
|
+
Requires-Dist: pgc-assembler==3.0.0
|
|
20
|
+
Requires-Dist: pgc-runtime==3.0.0
|
|
21
|
+
Requires-Dist: pgc-inspector==3.0.0
|
|
22
|
+
Requires-Dist: pgc-transformation==3.0.0
|
|
23
|
+
Requires-Dist: pgc-governance==3.0.0
|
|
24
|
+
Requires-Dist: pgc-workloads==3.0.0
|
|
25
|
+
Requires-Dist: pgc-domains==3.0.0
|
|
26
26
|
Provides-Extra: blockchain
|
|
27
|
-
Requires-Dist: pgc-domains[blockchain]==
|
|
27
|
+
Requires-Dist: pgc-domains[blockchain]==3.0.0; extra == "blockchain"
|
|
28
28
|
|
|
29
29
|
# pgc_install
|
|
30
30
|
|
|
31
31
|
**Protocol-Governed Computing — the whole toolchain in one install.**
|
|
32
32
|
|
|
33
|
-
This repository publishes the `
|
|
33
|
+
This repository publishes the `protocol-governed-computing` distribution. PyPI prohibits the
|
|
34
|
+
short name `pgc`, so the composition carries the full project name; the command it installs is
|
|
35
|
+
still `pgc`. It is the composition as *installable
|
|
34
36
|
software*, the counterpart to `pgc_release`, which is the same composition as *sealed
|
|
35
37
|
evidence* — assembled, immutable, and cited by DOI. The parallel is in role, not in citation:
|
|
36
38
|
a release is a thing a paper points at; an install is a thing that changes each version.
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
pip install
|
|
41
|
+
pip install protocol-governed-computing
|
|
40
42
|
```
|
|
41
43
|
|
|
42
|
-
That brings in the
|
|
44
|
+
That brings in the eight component packages of the family, pinned to one composition, and puts
|
|
45
|
+
`pgc` on the path.
|
|
43
46
|
|
|
44
47
|
## Two steps, not one
|
|
45
48
|
|
|
@@ -70,10 +73,10 @@ pgc # reports what is installed and whether the anchor resolves
|
|
|
70
73
|
|
|
71
74
|
**Versioning.** Two schemes. Each repository's `VERSION` is a monotonic composition ordinal —
|
|
72
75
|
internal build accounting, tagged `release-<N>`, never published. `PUBLIC_VERSION` is the platform's
|
|
73
|
-
public identity, tagged on every component repository; the platform is at **`
|
|
76
|
+
public identity, tagged on every component repository; the platform is at **`v3`**.
|
|
74
77
|
|
|
75
|
-
**The published version is the public one: `
|
|
76
|
-
pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
78
|
+
**The published version is the public one: `v3` is `3.0.0`.** The family releases in lockstep, so the
|
|
79
|
+
composition pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
77
80
|
its own track and is not this number.
|
|
78
81
|
|
|
79
82
|
The standard these packages implement is published separately:
|
|
@@ -2,16 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
**Protocol-Governed Computing — the whole toolchain in one install.**
|
|
4
4
|
|
|
5
|
-
This repository publishes the `
|
|
5
|
+
This repository publishes the `protocol-governed-computing` distribution. PyPI prohibits the
|
|
6
|
+
short name `pgc`, so the composition carries the full project name; the command it installs is
|
|
7
|
+
still `pgc`. It is the composition as *installable
|
|
6
8
|
software*, the counterpart to `pgc_release`, which is the same composition as *sealed
|
|
7
9
|
evidence* — assembled, immutable, and cited by DOI. The parallel is in role, not in citation:
|
|
8
10
|
a release is a thing a paper points at; an install is a thing that changes each version.
|
|
9
11
|
|
|
10
12
|
```bash
|
|
11
|
-
pip install
|
|
13
|
+
pip install protocol-governed-computing
|
|
12
14
|
```
|
|
13
15
|
|
|
14
|
-
That brings in the
|
|
16
|
+
That brings in the eight component packages of the family, pinned to one composition, and puts
|
|
17
|
+
`pgc` on the path.
|
|
15
18
|
|
|
16
19
|
## Two steps, not one
|
|
17
20
|
|
|
@@ -42,10 +45,10 @@ pgc # reports what is installed and whether the anchor resolves
|
|
|
42
45
|
|
|
43
46
|
**Versioning.** Two schemes. Each repository's `VERSION` is a monotonic composition ordinal —
|
|
44
47
|
internal build accounting, tagged `release-<N>`, never published. `PUBLIC_VERSION` is the platform's
|
|
45
|
-
public identity, tagged on every component repository; the platform is at **`
|
|
48
|
+
public identity, tagged on every component repository; the platform is at **`v3`**.
|
|
46
49
|
|
|
47
|
-
**The published version is the public one: `
|
|
48
|
-
pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
50
|
+
**The published version is the public one: `v3` is `3.0.0`.** The family releases in lockstep, so the
|
|
51
|
+
composition pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
49
52
|
its own track and is not this number.
|
|
50
53
|
|
|
51
54
|
The standard these packages implement is published separately:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: protocol-governed-computing
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
4
4
|
Summary: Protocol-Governed Computing — installs the full toolchain and reports whether an environment is ready to compile, seal, and execute
|
|
5
5
|
Author-email: Bhash Ganti <bachipeachy@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -15,31 +15,34 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Classifier: Topic :: Software Development :: Compilers
|
|
16
16
|
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: pgc-compiler==
|
|
19
|
-
Requires-Dist: pgc-assembler==
|
|
20
|
-
Requires-Dist: pgc-runtime==
|
|
21
|
-
Requires-Dist: pgc-inspector==
|
|
22
|
-
Requires-Dist: pgc-transformation==
|
|
23
|
-
Requires-Dist: pgc-governance==
|
|
24
|
-
Requires-Dist: pgc-workloads==
|
|
25
|
-
Requires-Dist: pgc-domains==
|
|
18
|
+
Requires-Dist: pgc-compiler==3.0.0
|
|
19
|
+
Requires-Dist: pgc-assembler==3.0.0
|
|
20
|
+
Requires-Dist: pgc-runtime==3.0.0
|
|
21
|
+
Requires-Dist: pgc-inspector==3.0.0
|
|
22
|
+
Requires-Dist: pgc-transformation==3.0.0
|
|
23
|
+
Requires-Dist: pgc-governance==3.0.0
|
|
24
|
+
Requires-Dist: pgc-workloads==3.0.0
|
|
25
|
+
Requires-Dist: pgc-domains==3.0.0
|
|
26
26
|
Provides-Extra: blockchain
|
|
27
|
-
Requires-Dist: pgc-domains[blockchain]==
|
|
27
|
+
Requires-Dist: pgc-domains[blockchain]==3.0.0; extra == "blockchain"
|
|
28
28
|
|
|
29
29
|
# pgc_install
|
|
30
30
|
|
|
31
31
|
**Protocol-Governed Computing — the whole toolchain in one install.**
|
|
32
32
|
|
|
33
|
-
This repository publishes the `
|
|
33
|
+
This repository publishes the `protocol-governed-computing` distribution. PyPI prohibits the
|
|
34
|
+
short name `pgc`, so the composition carries the full project name; the command it installs is
|
|
35
|
+
still `pgc`. It is the composition as *installable
|
|
34
36
|
software*, the counterpart to `pgc_release`, which is the same composition as *sealed
|
|
35
37
|
evidence* — assembled, immutable, and cited by DOI. The parallel is in role, not in citation:
|
|
36
38
|
a release is a thing a paper points at; an install is a thing that changes each version.
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
pip install
|
|
41
|
+
pip install protocol-governed-computing
|
|
40
42
|
```
|
|
41
43
|
|
|
42
|
-
That brings in the
|
|
44
|
+
That brings in the eight component packages of the family, pinned to one composition, and puts
|
|
45
|
+
`pgc` on the path.
|
|
43
46
|
|
|
44
47
|
## Two steps, not one
|
|
45
48
|
|
|
@@ -70,10 +73,10 @@ pgc # reports what is installed and whether the anchor resolves
|
|
|
70
73
|
|
|
71
74
|
**Versioning.** Two schemes. Each repository's `VERSION` is a monotonic composition ordinal —
|
|
72
75
|
internal build accounting, tagged `release-<N>`, never published. `PUBLIC_VERSION` is the platform's
|
|
73
|
-
public identity, tagged on every component repository; the platform is at **`
|
|
76
|
+
public identity, tagged on every component repository; the platform is at **`v3`**.
|
|
74
77
|
|
|
75
|
-
**The published version is the public one: `
|
|
76
|
-
pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
78
|
+
**The published version is the public one: `v3` is `3.0.0`.** The family releases in lockstep, so the
|
|
79
|
+
composition pins exact versions rather than ranges. The standard these packages implement is a separate artifact on
|
|
77
80
|
its own track and is not this number.
|
|
78
81
|
|
|
79
82
|
The standard these packages implement is published separately:
|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
|
7
7
|
# composition takes the full project name. The import package and the console script are unaffected:
|
|
8
8
|
# a user still runs `pgc`.
|
|
9
9
|
name = "protocol-governed-computing"
|
|
10
|
-
version = "
|
|
10
|
+
version = "3.0.0"
|
|
11
11
|
description = "Protocol-Governed Computing — installs the full toolchain and reports whether an environment is ready to compile, seal, and execute"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
requires-python = ">=3.10"
|
|
@@ -28,20 +28,20 @@ classifiers = [
|
|
|
28
28
|
# the repos release together and the governance closure forces lockstep, so a
|
|
29
29
|
# mixed-version install is not a supported configuration.
|
|
30
30
|
dependencies = [
|
|
31
|
-
"pgc-compiler==
|
|
32
|
-
"pgc-assembler==
|
|
33
|
-
"pgc-runtime==
|
|
34
|
-
"pgc-inspector==
|
|
35
|
-
"pgc-transformation==
|
|
36
|
-
"pgc-governance==
|
|
37
|
-
"pgc-workloads==
|
|
38
|
-
"pgc-domains==
|
|
31
|
+
"pgc-compiler==3.0.0",
|
|
32
|
+
"pgc-assembler==3.0.0",
|
|
33
|
+
"pgc-runtime==3.0.0",
|
|
34
|
+
"pgc-inspector==3.0.0",
|
|
35
|
+
"pgc-transformation==3.0.0",
|
|
36
|
+
"pgc-governance==3.0.0",
|
|
37
|
+
"pgc-workloads==3.0.0",
|
|
38
|
+
"pgc-domains==3.0.0",
|
|
39
39
|
]
|
|
40
40
|
|
|
41
41
|
# The blockchain domain's capability transforms need Keccak-256, which is optional in pgc-domains
|
|
42
42
|
# for the same reason it is optional there: the core compile path imports none of it.
|
|
43
43
|
[project.optional-dependencies]
|
|
44
|
-
blockchain = ["pgc-domains[blockchain]==
|
|
44
|
+
blockchain = ["pgc-domains[blockchain]==3.0.0"]
|
|
45
45
|
|
|
46
46
|
[project.scripts]
|
|
47
47
|
pgc = "pgc.cli:main"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|