Metadata-Version: 2.4
Name: sovereign-engine
Version: 1.0.0
Summary: Procedural Game Engine powered by IntentShield and LogicShield (BSL 1.1)
Home-page: https://github.com/sovereign-shield/sovereign-engine
Author: SovereignShield
Author-email: support@sovereignshield.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Security
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

ï»¿# Sovereign Engine

The Zero-Trust Procedural Game Engine. Built securely on IntentShield and LogicShield.

## License
This project is licensed under the Business Source License 1.1 (BSL 1.1).

## Usage
```python
from sovereign_engine.engine import ProceduralDialogueEngine

engine = ProceduralDialogueEngine(api_key="your-openrouter-key")

node = engine.generate_node(
    player_state={"level": 5, "inventory": ["Sword", "Shield"]},
    recent_history=["You enter a dark cavern."],
    player_action="I walk forward with my shield up."
)
```
