benchcad 0.1.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.
- benchcad-0.1.0/.gitignore +5 -0
- benchcad-0.1.0/PKG-INFO +19 -0
- benchcad-0.1.0/README.md +8 -0
- benchcad-0.1.0/pyproject.toml +18 -0
- benchcad-0.1.0/src/benchcad/__init__.py +7 -0
benchcad-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: benchcad
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official package name for the BenchCAD benchmark suite (placeholder release; the evaluation engine lives on GitHub)
|
|
5
|
+
Project-URL: Homepage, https://benchcad.com
|
|
6
|
+
Project-URL: GitHub, https://github.com/BenchCAD/BenchCAD-main
|
|
7
|
+
Project-URL: Organization, https://github.com/BenchCAD-org
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# benchcad
|
|
13
|
+
|
|
14
|
+
Official package name of the **BenchCAD** benchmark suite — execution-grounded
|
|
15
|
+
benchmarks for programmatic CAD, cited in frontier-model system cards.
|
|
16
|
+
|
|
17
|
+
This is a placeholder release reserving the name for the official tooling.
|
|
18
|
+
Today, use the benchmark from GitHub: https://github.com/BenchCAD/BenchCAD-main
|
|
19
|
+
· Website: https://benchcad.com · Org & roadmap: https://github.com/BenchCAD-org
|
benchcad-0.1.0/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# benchcad
|
|
2
|
+
|
|
3
|
+
Official package name of the **BenchCAD** benchmark suite — execution-grounded
|
|
4
|
+
benchmarks for programmatic CAD, cited in frontier-model system cards.
|
|
5
|
+
|
|
6
|
+
This is a placeholder release reserving the name for the official tooling.
|
|
7
|
+
Today, use the benchmark from GitHub: https://github.com/BenchCAD/BenchCAD-main
|
|
8
|
+
· Website: https://benchcad.com · Org & roadmap: https://github.com/BenchCAD-org
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "benchcad"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Official package name for the BenchCAD benchmark suite (placeholder release; the evaluation engine lives on GitHub)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
[project.urls]
|
|
9
|
+
Homepage = "https://benchcad.com"
|
|
10
|
+
GitHub = "https://github.com/BenchCAD/BenchCAD-main"
|
|
11
|
+
Organization = "https://github.com/BenchCAD-org"
|
|
12
|
+
[project.scripts]
|
|
13
|
+
benchcad = "benchcad:main"
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/benchcad"]
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"""Official BenchCAD package name (placeholder release)."""
|
|
2
|
+
__version__ = "0.1.0"
|
|
3
|
+
|
|
4
|
+
def main():
|
|
5
|
+
print("BenchCAD - execution-grounded benchmarks for programmatic CAD")
|
|
6
|
+
print("Engine & benchmark: https://github.com/BenchCAD/BenchCAD-main")
|
|
7
|
+
print("Website: https://benchcad.com | Roadmap: https://github.com/BenchCAD-org")
|