Metadata-Version: 2.4
Name: sae-perception-sdk
Version: 0.1.0
Summary: Perception Fusion SDK for the Sovereign Autonomy Engine.
Author: Kevin Price
License: Proprietary
Project-URL: Homepage, https://example.com/sae-perception-sdk
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# SAE Perception SDK

Perception Fusion SDK for the Sovereign Autonomy Engine.

## Install

pip install sae-perception-sdk

## Usage

from sae.perception.interface import Perception

perception = Perception()
result = perception.fuse({
    "camera": {"frame": 123},
    "lidar": {"points": 2048}
})
print(result)

## Notes

This SDK exposes the perception fusion interface surface only.
Internal perception logic remains private.
