Metadata-Version: 2.4
Name: sae-til-sdk
Version: 0.1.0
Summary: Temporal Interaction Layer SDK for the Sovereign Autonomy Engine.
Author: Kevin Price
License: Proprietary
Project-URL: Homepage, https://example.com/sae-til-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 TIL SDK

Temporal Interaction Layer SDK for the Sovereign Autonomy Engine.

## Install

```bash
pip install sae-til-sdk
from sae.til.interface import TIL

til = TIL()
result = til.tick(0.1)
print(result)
Save + exit.

---

# 📄 3. `examples/basic_usage.py`

Open:

```bash
nano examples/basic_usage.py
from sae.til.interface import TIL

def main():
    til = TIL()
    result = til.tick(0.1)
    print("TIL tick result:", result)

if __name__ == "__main__":
    main()
