idea160-exprove-open-source/exprove/__init__.py

26 lines
625 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""ExProve Open-Source Execution Provenance Engine (Core Primitives)
This package provides lightweight, production-oriented data contracts for cross-venue
execution provenance. It is intentionally minimal but designed to be easily extended
into a full edge-native solver and validator stack.
"""
from __future__ import annotations
from .contracts import (
LocalExecutionTask,
SharedMarketContext,
PlanDelta,
Attestation,
AuditLog,
GraphOfContracts,
)
__all__ = [
"LocalExecutionTask",
"SharedMarketContext",
"PlanDelta",
"Attestation",
"AuditLog",
"GraphOfContracts",
]