orionfold-proof 0.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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: orionfold-proof
3
+ Version: 0.0.0
4
+ Summary: Orionfold Proof — local-first proof receipts that show which AI model, prompt, or RAG setup is worth trusting (early placeholder).
5
+ Project-URL: Homepage, https://orionfold.com
6
+ Author-email: Manav Sehgal <manav@orionfold.com>
7
+ Keywords: ai,evaluation,orionfold,proof
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+
15
+ # orionfold-proof
16
+
17
+ Orionfold Proof — local-first proof receipts that show which AI model, prompt, or RAG setup is worth trusting (early placeholder).
18
+
19
+ By **Orionfold LLC** — https://orionfold.com
20
+
21
+ This is an early placeholder release that reserves the project name. The functional
22
+ release will follow.
@@ -0,0 +1,8 @@
1
+ # orionfold-proof
2
+
3
+ Orionfold Proof — local-first proof receipts that show which AI model, prompt, or RAG setup is worth trusting (early placeholder).
4
+
5
+ By **Orionfold LLC** — https://orionfold.com
6
+
7
+ This is an early placeholder release that reserves the project name. The functional
8
+ release will follow.
@@ -0,0 +1,2 @@
1
+ """orionfold-proof — placeholder. See https://orionfold.com"""
2
+ __version__ = "0.0.0"
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "orionfold-proof"
7
+ version = "0.0.0"
8
+ description = "Orionfold Proof — local-first proof receipts that show which AI model, prompt, or RAG setup is worth trusting (early placeholder)."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ authors = [{ name = "Manav Sehgal", email = "manav@orionfold.com" }]
12
+ keywords = ["orionfold", "ai", "proof", "evaluation"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "License :: Other/Proprietary License",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.12",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://orionfold.com"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["orionfold_proof"]