proofload 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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Poisson Labs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.5
2
+ Name: proofload
3
+ Version: 0.0.0
4
+ Summary: A statistical instrument for finding where autonomous and agentic systems break.
5
+ Project-URL: Homepage, https://poissonlabs.ai/proofload
6
+ Project-URL: Documentation, https://poissonlabs.ai/proofload
7
+ Author: Taylor Kolasinski
8
+ License: MIT License
9
+
10
+ Copyright (c) 2026 Poisson Labs
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ License-File: LICENSE
30
+ Keywords: agents,autonomy,evaluation,reliability,statistics
31
+ Classifier: Development Status :: 1 - Planning
32
+ Classifier: Intended Audience :: Science/Research
33
+ Classifier: License :: OSI Approved :: MIT License
34
+ Classifier: Programming Language :: Python :: 3
35
+ Classifier: Programming Language :: Python :: 3.11
36
+ Classifier: Topic :: Scientific/Engineering
37
+ Requires-Python: >=3.11
38
+ Description-Content-Type: text/markdown
39
+
40
+ # Proofload
41
+
42
+ Proofload is a statistical instrument for finding where autonomous and agentic
43
+ systems break. It measures failure rather than simulating, training, or
44
+ benchmarking, and it stays out of the environment and the user's code.
45
+
46
+ This is a name reservation for the forthcoming release. It contains no working
47
+ code yet. Development happens at [Poisson Labs](https://poissonlabs.ai/proofload).
48
+
49
+ Pre-release. Not yet usable.
@@ -0,0 +1,10 @@
1
+ # Proofload
2
+
3
+ Proofload is a statistical instrument for finding where autonomous and agentic
4
+ systems break. It measures failure rather than simulating, training, or
5
+ benchmarking, and it stays out of the environment and the user's code.
6
+
7
+ This is a name reservation for the forthcoming release. It contains no working
8
+ code yet. Development happens at [Poisson Labs](https://poissonlabs.ai/proofload).
9
+
10
+ Pre-release. Not yet usable.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "proofload"
7
+ version = "0.0.0"
8
+ description = "A statistical instrument for finding where autonomous and agentic systems break."
9
+ readme = "README.md"
10
+ license = { file = "LICENSE" }
11
+ requires-python = ">=3.11"
12
+ authors = [{ name = "Taylor Kolasinski" }]
13
+ keywords = ["reliability", "agents", "autonomy", "statistics", "evaluation"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Science/Research",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Topic :: Scientific/Engineering",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://poissonlabs.ai/proofload"
25
+ Documentation = "https://poissonlabs.ai/proofload"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/proofload"]
@@ -0,0 +1,3 @@
1
+ """Proofload — placeholder release. See https://poissonlabs.ai/proofload."""
2
+
3
+ __version__ = "0.0.0"