Metadata-Version: 2.4
Name: tigrbl_engine_sqlite
Version: 0.1.11.dev1
Summary: SQLite engine plugin for Tigrbl.
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
Author-email: Jacob Stewart <jacob@swarmauri.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: engine,sqlalchemy,sqlite,tigrbl,transaction
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: <3.14,>=3.10
Requires-Dist: sqlalchemy<3.0,>=2.0
Requires-Dist: tigrbl>=0.3.0.dev4
Description-Content-Type: text/markdown

# tigrbl_engine_sqlite

SQLite engine plugin for **Tigrbl**.

## Install

```bash
pip install tigrbl_engine_sqlite
```

## Use

```python
from tigrbl.engine.decorators import engine_ctx

@engine_ctx({"kind": "sqlite", "path": "./data/app.db"})
class AppAPI:
    pass
```

The plugin auto-registers via the `tigrbl.engine` entry point.
## Canonical documentation

This file is a package-local distribution entry point. Authoritative workspace guidance lives in:

- `docs/README.md`
- `docs/conformance/CURRENT_TARGET.md`
- `docs/conformance/CURRENT_STATE.md`
- `docs/conformance/NEXT_STEPS.md`
- `docs/governance/DOC_POINTERS.md`
- `docs/developer/PACKAGE_CATALOG.md`
- `docs/developer/PACKAGE_LAYOUT.md`

