orionfold 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.
- orionfold-0.0.0/PKG-INFO +22 -0
- orionfold-0.0.0/README.md +8 -0
- orionfold-0.0.0/orionfold/__init__.py +2 -0
- orionfold-0.0.0/pyproject.toml +24 -0
orionfold-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orionfold
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Orionfold — umbrella package for the Orionfold product suite (name reservation 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
|
|
16
|
+
|
|
17
|
+
Orionfold — umbrella package for the Orionfold product suite (name reservation 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
|
|
2
|
+
|
|
3
|
+
Orionfold — umbrella package for the Orionfold product suite (name reservation 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,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "orionfold"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Orionfold — umbrella package for the Orionfold product suite (name reservation 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"]
|