crowdbench-run 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,28 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .venv/
8
+ venv/
9
+ .pytest_cache/
10
+ .mypy_cache/
11
+ .ruff_cache/
12
+
13
+ # Node
14
+ node_modules/
15
+ npm-debug.log*
16
+ yarn-error.log*
17
+ .pnpm-debug.log*
18
+ *.tsbuildinfo
19
+
20
+ # Editors / OS
21
+ .DS_Store
22
+ .idea/
23
+ .vscode/
24
+
25
+ # Env
26
+ .env
27
+ .env.*
28
+ !.env.example
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: crowdbench-run
3
+ Version: 0.0.1
4
+ Summary: Name reservation for CrowdBench (crowdbench.ai) — real package forthcoming
5
+ Project-URL: Homepage, https://crowdbench.ai
6
+ Project-URL: Repository, https://github.com/crowdbench-ai/crowdbench
7
+ License-Expression: Apache-2.0
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # crowdbench-run
12
+
13
+ Name reservation for CrowdBench (crowdbench.ai) — real package forthcoming
14
+
15
+ CrowdBench is a crowdsourced LLM benchmarking platform. This release reserves
16
+ the name `crowdbench-run` on PyPI and contains no functionality.
17
+
18
+ See [crowdbench.ai](https://crowdbench.ai).
@@ -0,0 +1,8 @@
1
+ # crowdbench-run
2
+
3
+ Name reservation for CrowdBench (crowdbench.ai) — real package forthcoming
4
+
5
+ CrowdBench is a crowdsourced LLM benchmarking platform. This release reserves
6
+ the name `crowdbench-run` on PyPI and contains no functionality.
7
+
8
+ See [crowdbench.ai](https://crowdbench.ai).
@@ -0,0 +1,7 @@
1
+ """Name reservation for CrowdBench.
2
+
3
+ This package reserves the name `crowdbench-run` on PyPI. It has no functionality.
4
+ See https://crowdbench.ai for the real implementation.
5
+ """
6
+
7
+ __version__ = "0.0.1"
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "crowdbench-run"
7
+ version = "0.0.1"
8
+ description = "Name reservation for CrowdBench (crowdbench.ai) — real package forthcoming"
9
+ requires-python = ">=3.9"
10
+ readme = "README.md"
11
+ license = "Apache-2.0"
12
+
13
+ [project.urls]
14
+ Homepage = "https://crowdbench.ai"
15
+ Repository = "https://github.com/crowdbench-ai/crowdbench"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["crowdbench_run"]