perathos 0.2.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.
Files changed (40) hide show
  1. perathos-0.2.0/PKG-INFO +25 -0
  2. perathos-0.2.0/README.md +1234 -0
  3. perathos-0.2.0/perathos/__init__.py +98 -0
  4. perathos-0.2.0/perathos/bundle.py +347 -0
  5. perathos-0.2.0/perathos/calibration.py +134 -0
  6. perathos-0.2.0/perathos/canonical.py +92 -0
  7. perathos-0.2.0/perathos/cli.py +622 -0
  8. perathos-0.2.0/perathos/engines.py +371 -0
  9. perathos-0.2.0/perathos/inspector.py +323 -0
  10. perathos-0.2.0/perathos/keytrust.py +165 -0
  11. perathos-0.2.0/perathos/pipeline.py +132 -0
  12. perathos-0.2.0/perathos/signing.py +161 -0
  13. perathos-0.2.0/perathos/storage.py +599 -0
  14. perathos-0.2.0/perathos/verdict.py +77 -0
  15. perathos-0.2.0/perathos/verifiers.py +220 -0
  16. perathos-0.2.0/perathos/verifiers_nli.py +134 -0
  17. perathos-0.2.0/perathos.egg-info/PKG-INFO +25 -0
  18. perathos-0.2.0/perathos.egg-info/SOURCES.txt +38 -0
  19. perathos-0.2.0/perathos.egg-info/dependency_links.txt +1 -0
  20. perathos-0.2.0/perathos.egg-info/entry_points.txt +2 -0
  21. perathos-0.2.0/perathos.egg-info/requires.txt +25 -0
  22. perathos-0.2.0/perathos.egg-info/top_level.txt +1 -0
  23. perathos-0.2.0/pyproject.toml +37 -0
  24. perathos-0.2.0/setup.cfg +4 -0
  25. perathos-0.2.0/tests/test_audit_fixes.py +196 -0
  26. perathos-0.2.0/tests/test_bundle.py +383 -0
  27. perathos-0.2.0/tests/test_bundle_v2.py +90 -0
  28. perathos-0.2.0/tests/test_calibration.py +68 -0
  29. perathos-0.2.0/tests/test_canonical.py +28 -0
  30. perathos-0.2.0/tests/test_cli.py +145 -0
  31. perathos-0.2.0/tests/test_cli_commands.py +227 -0
  32. perathos-0.2.0/tests/test_engines.py +106 -0
  33. perathos-0.2.0/tests/test_inspector.py +84 -0
  34. perathos-0.2.0/tests/test_keytrust.py +78 -0
  35. perathos-0.2.0/tests/test_public_api.py +75 -0
  36. perathos-0.2.0/tests/test_signing.py +220 -0
  37. perathos-0.2.0/tests/test_storage.py +177 -0
  38. perathos-0.2.0/tests/test_verification_bundle.py +98 -0
  39. perathos-0.2.0/tests/test_verifiers.py +121 -0
  40. perathos-0.2.0/tests/test_verifiers_nli.py +51 -0
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: perathos
3
+ Version: 0.2.0
4
+ Summary: Cryptographic proof layer for AI outputs — VRL Proof Bundles
5
+ Requires-Python: >=3.11
6
+ Requires-Dist: click>=8.0
7
+ Requires-Dist: cryptography>=42.0
8
+ Provides-Extra: dev
9
+ Requires-Dist: pytest>=8.0; extra == "dev"
10
+ Requires-Dist: ruff>=0.4; extra == "dev"
11
+ Requires-Dist: jsonschema>=4.21; extra == "dev"
12
+ Provides-Extra: schema
13
+ Requires-Dist: jsonschema>=4.21; extra == "schema"
14
+ Provides-Extra: agents
15
+ Requires-Dist: httpx<0.29,>=0.27; extra == "agents"
16
+ Requires-Dist: anthropic<1.0,>=0.39; extra == "agents"
17
+ Provides-Extra: nli
18
+ Requires-Dist: transformers>=4.40; extra == "nli"
19
+ Requires-Dist: torch>=2.0; extra == "nli"
20
+ Provides-Extra: train
21
+ Requires-Dist: transformers>=4.40; extra == "train"
22
+ Requires-Dist: torch>=2.0; extra == "train"
23
+ Requires-Dist: accelerate>=1.1.0; extra == "train"
24
+ Requires-Dist: datasets>=2.0; extra == "train"
25
+ Requires-Dist: scikit-learn>=1.0; extra == "train"