polyharness 0.1.1__py3-none-any.whl

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,3 @@
1
+ """PolyHarness — Automated harness optimization for AI agents."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,6 @@
1
+ """Allow running `python -m polyharness.cli`."""
2
+
3
+ from polyharness.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()