Metadata-Version: 2.4
Name: tigrbl_engine_postgres
Version: 0.1.13.dev1
Summary: PostgreSQL engine plugin for Tigrbl.
Project-URL: Homepage, https://github.com/swarmauri/tigrbl
Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_postgres
Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
Author-email: Jacob Stewart <jacob@swarmauri.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: engine,postgres,psycopg,sqlalchemy,tigrbl
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: psycopg[binary]<4.0,>=3.1
Requires-Dist: sqlalchemy<3.0,>=2.0
Requires-Dist: tigrbl>=0.3.0.dev4
Description-Content-Type: text/markdown

# tigrbl_engine_postgres

PostgreSQL engine plugin for **Tigrbl**.

## Install

```bash
pip install tigrbl_engine_postgres
```

## Use

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

@engine_ctx({"kind": "postgres", "dsn": "postgresql+psycopg://user:pwd@localhost:5432/app"})
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`

