provetrail 0.0.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.
@@ -0,0 +1,16 @@
1
+ # Node
2
+ node_modules/
3
+ *.tgz
4
+ npm-debug.log*
5
+
6
+ # Python
7
+ dist/
8
+ build/
9
+ *.egg-info/
10
+ __pycache__/
11
+ *.pyc
12
+ .venv/
13
+
14
+ # OS
15
+ .DS_Store
16
+ Thumbs.db
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: provetrail
3
+ Version: 0.0.1
4
+ Summary: Official verifier and tooling for the Provetrail standard (verifiable execution provenance). Reference implementation in progress.
5
+ Project-URL: Homepage, https://provetrail.org
6
+ Project-URL: Repository, https://github.com/ionalpha/provetrail
7
+ Project-URL: Issues, https://github.com/ionalpha/provetrail/issues
8
+ Author-email: Ion Alpha <contact@ionalpha.io>
9
+ License: Apache-2.0
10
+ Keywords: agents,attestation,audit,provenance,provetrail,transparency-log,verifiable-execution
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Topic :: Security :: Cryptography
15
+ Classifier: Topic :: Software Development :: Libraries
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown
18
+
19
+ # provetrail
20
+
21
+ Official verifier and tooling for **Provetrail**, an open standard for verifiable execution provenance.
22
+
23
+ > **Status: placeholder (`0.0.x`).** The reference implementation is in progress. This package reserves the canonical name and points to the specification. It does not yet verify records.
24
+
25
+ ## What Provetrail is
26
+
27
+ A portable, third-party-verifiable record of what an agent did, in what order, and under what governance, anchored to an append-only, tamper-evident event log.
28
+
29
+ - Specification and conformance suite: https://github.com/ionalpha/provetrail
30
+ - Project home: https://provetrail.org
31
+
32
+ ## Install
33
+
34
+ ```
35
+ pip install provetrail
36
+ ```
37
+
38
+ ## Status
39
+
40
+ When the cryptographic layer of the standard lands, this package will provide a verifier that checks Provetrail records across the structural, cryptographic, transparency, and governance tiers against the published conformance vectors. Until then it is a name reservation with a pointer to the standard.
41
+
42
+ ## License
43
+
44
+ Apache-2.0. The specification prose is CC-BY-4.0. Provetrail is a trademark of Ion Alpha.
@@ -0,0 +1,26 @@
1
+ # provetrail
2
+
3
+ Official verifier and tooling for **Provetrail**, an open standard for verifiable execution provenance.
4
+
5
+ > **Status: placeholder (`0.0.x`).** The reference implementation is in progress. This package reserves the canonical name and points to the specification. It does not yet verify records.
6
+
7
+ ## What Provetrail is
8
+
9
+ A portable, third-party-verifiable record of what an agent did, in what order, and under what governance, anchored to an append-only, tamper-evident event log.
10
+
11
+ - Specification and conformance suite: https://github.com/ionalpha/provetrail
12
+ - Project home: https://provetrail.org
13
+
14
+ ## Install
15
+
16
+ ```
17
+ pip install provetrail
18
+ ```
19
+
20
+ ## Status
21
+
22
+ When the cryptographic layer of the standard lands, this package will provide a verifier that checks Provetrail records across the structural, cryptographic, transparency, and governance tiers against the published conformance vectors. Until then it is a name reservation with a pointer to the standard.
23
+
24
+ ## License
25
+
26
+ Apache-2.0. The specification prose is CC-BY-4.0. Provetrail is a trademark of Ion Alpha.
@@ -0,0 +1,36 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "provetrail"
7
+ version = "0.0.1"
8
+ description = "Official verifier and tooling for the Provetrail standard (verifiable execution provenance). Reference implementation in progress."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "Ion Alpha", email = "contact@ionalpha.io" }]
13
+ keywords = [
14
+ "provetrail",
15
+ "verifiable-execution",
16
+ "provenance",
17
+ "agents",
18
+ "audit",
19
+ "transparency-log",
20
+ "attestation",
21
+ ]
22
+ classifiers = [
23
+ "Development Status :: 2 - Pre-Alpha",
24
+ "Intended Audience :: Developers",
25
+ "License :: OSI Approved :: Apache Software License",
26
+ "Topic :: Security :: Cryptography",
27
+ "Topic :: Software Development :: Libraries",
28
+ ]
29
+
30
+ [project.urls]
31
+ Homepage = "https://provetrail.org"
32
+ Repository = "https://github.com/ionalpha/provetrail"
33
+ Issues = "https://github.com/ionalpha/provetrail/issues"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["src/provetrail"]
@@ -0,0 +1,15 @@
1
+ """Provetrail: official verifier and tooling (placeholder).
2
+
3
+ The reference implementation is in progress. This package currently reserves
4
+ the canonical name and points to the specification. See https://provetrail.org
5
+ and https://github.com/ionalpha/provetrail for the specification and the
6
+ conformance suite.
7
+
8
+ When the cryptographic layer of the standard lands, this package will verify
9
+ Provetrail records against the published conformance vectors.
10
+ """
11
+
12
+ __version__ = "0.0.1"
13
+
14
+ STATUS = "draft"
15
+ SPEC_URL = "https://github.com/ionalpha/provetrail"