receipt-binding 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,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: receipt-binding
3
+ Version: 0.0.1
4
+ Summary: Receipt Binding → This package is now `aiir`. Install: pip install aiir
5
+ Project-URL: Homepage, https://github.com/invariant-systems-ai/receipt-action
6
+ Author-email: "Invariant Systems, Inc." <hello@invariantsystems.io>
7
+ License-Expression: Apache-2.0
8
+ Keywords: ai,attestation,audit,compliance,inference,integrity,llm,receipts
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Security :: Cryptography
14
+ Classifier: Topic :: Software Development :: Quality Assurance
15
+ Requires-Python: >=3.9
16
+ Requires-Dist: aiir
17
+ Description-Content-Type: text/markdown
18
+
19
+ # receipt-binding
20
+
21
+ > **This package has been consolidated into [`aiir`](https://pypi.org/project/aiir/).**
22
+
23
+ ## Install the real package
24
+
25
+ ```bash
26
+ pip install aiir
27
+ ```
28
+
29
+ ## What is AIIR?
30
+
31
+ **AI Integrity Receipts** — lightweight cryptographic commitment records
32
+ generated during AI inference that bind model identity, sampling configuration,
33
+ and output tokens into a tamper-evident hash chain.
34
+
35
+ - Zero external dependencies (Python stdlib only)
36
+ - Receipt generation in < 100 µs
37
+ - SHA-256 hash chains with O(1) amortized cost
38
+ - Works with any model format (GGUF, ONNX, cloud APIs)
39
+ - MCP server for Claude / Copilot / ChatGPT integration
40
+
41
+ ## Links
42
+
43
+ - **PyPI**: [aiir](https://pypi.org/project/aiir/)
44
+ - **GitHub**: [invariant-systems-ai/receipt-action](https://github.com/invariant-systems-ai/receipt-action)
45
+ - **Paper**: [Attestable AI: Cryptographic Receipt-Binding for Local Generative Model Inference](https://arxiv.org/abs/XXXX.XXXXX)
46
+
47
+ ---
48
+
49
+ *This package (`receipt-binding`) exists to redirect users to the canonical `aiir` package.
50
+ Installing it will automatically install `aiir` as a dependency.*
@@ -0,0 +1,32 @@
1
+ # receipt-binding
2
+
3
+ > **This package has been consolidated into [`aiir`](https://pypi.org/project/aiir/).**
4
+
5
+ ## Install the real package
6
+
7
+ ```bash
8
+ pip install aiir
9
+ ```
10
+
11
+ ## What is AIIR?
12
+
13
+ **AI Integrity Receipts** — lightweight cryptographic commitment records
14
+ generated during AI inference that bind model identity, sampling configuration,
15
+ and output tokens into a tamper-evident hash chain.
16
+
17
+ - Zero external dependencies (Python stdlib only)
18
+ - Receipt generation in < 100 µs
19
+ - SHA-256 hash chains with O(1) amortized cost
20
+ - Works with any model format (GGUF, ONNX, cloud APIs)
21
+ - MCP server for Claude / Copilot / ChatGPT integration
22
+
23
+ ## Links
24
+
25
+ - **PyPI**: [aiir](https://pypi.org/project/aiir/)
26
+ - **GitHub**: [invariant-systems-ai/receipt-action](https://github.com/invariant-systems-ai/receipt-action)
27
+ - **Paper**: [Attestable AI: Cryptographic Receipt-Binding for Local Generative Model Inference](https://arxiv.org/abs/XXXX.XXXXX)
28
+
29
+ ---
30
+
31
+ *This package (`receipt-binding`) exists to redirect users to the canonical `aiir` package.
32
+ Installing it will automatically install `aiir` as a dependency.*
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "receipt-binding"
7
+ version = "0.0.1"
8
+ description = "Receipt Binding → This package is now `aiir`. Install: pip install aiir"
9
+ readme = "README.md"
10
+ license = "Apache-2.0"
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "Invariant Systems, Inc.", email = "hello@invariantsystems.io" },
14
+ ]
15
+ keywords = ["ai", "receipts", "audit", "compliance", "integrity", "attestation", "inference", "llm"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3",
21
+ "Topic :: Software Development :: Quality Assurance",
22
+ "Topic :: Security :: Cryptography",
23
+ ]
24
+ dependencies = ["aiir"]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/invariant-systems-ai/receipt-action"
@@ -0,0 +1,25 @@
1
+ """
2
+ receipt-binding — this package has been renamed to `aiir`.
3
+
4
+ Install the real package:
5
+ pip install aiir
6
+
7
+ Usage:
8
+ import aiir
9
+ # or: from aiir import ReceiptEmitter, verify_receipt, verify_chain
10
+ """
11
+
12
+ import warnings as _w
13
+
14
+ _w.warn(
15
+ "receipt-binding has been renamed to 'aiir'. "
16
+ "Please run: pip install aiir && pip uninstall receipt-binding",
17
+ DeprecationWarning,
18
+ stacklevel=2,
19
+ )
20
+
21
+ try:
22
+ from aiir import * # noqa: F401, F403
23
+ from aiir import __version__
24
+ except ImportError:
25
+ __version__ = "0.0.1"