tigrbl_engine_postgres 0.1.12.dev1__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,3 +20,5 @@ target/
20
20
  .pip-cache/
21
21
  *.pyd
22
22
  .tmp-release-plan-check.json
23
+ /.uv-pytest-tigrbl-tests
24
+ perf.sqlite
@@ -0,0 +1,129 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl_engine_postgres
3
+ Version: 0.4.0
4
+ Summary: tigrbl_engine_postgres is a PostgreSQL engine plugin for PostgreSQL SQLAlchemy sessions and engine registration for Tigrbl applications.
5
+ Project-URL: Organization, https://github.com/tigrbl
6
+ Project-URL: Discord, https://discord.gg/K4YTAPapjR
7
+ Project-URL: Homepage, https://github.com/tigrbl/tigrbl
8
+ Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres
9
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
10
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
11
+ License-Expression: Apache-2.0
12
+ License-File: LICENSE
13
+ Keywords: api,asgi,database,engine,json-rpc,plugin,postgres,postgresql,psycopg,pydantic,rest,sqlalchemy,tigrbl
14
+ Classifier: Development Status :: 3 - Alpha
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Topic :: Database
26
+ Classifier: Topic :: Internet :: WWW/HTTP
27
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
28
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
+ Requires-Python: <3.14,>=3.10
30
+ Requires-Dist: psycopg[binary]<4.0,>=3.1
31
+ Requires-Dist: sqlalchemy<3.0,>=2.0
32
+ Requires-Dist: tigrbl>=0.3.0.dev4
33
+ Description-Content-Type: text/markdown
34
+
35
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
36
+
37
+ <p align="center">
38
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
39
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_postgres" alt="PyPI downloads for tigrbl_engine_postgres"/></a>
40
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres/">
41
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres.svg" alt="Repository views for tigrbl_engine_postgres"/></a>
42
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
43
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_postgres" alt="Supported Python versions for tigrbl_engine_postgres"/></a>
44
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
45
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_postgres" alt="PyPI license metadata for tigrbl_engine_postgres"/></a>
46
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
47
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_postgres?label=tigrbl_engine_postgres&color=green" alt="PyPI version for tigrbl_engine_postgres"/></a>
48
+ </p>
49
+
50
+ ---
51
+
52
+ # Tigrbl engine-postgres
53
+
54
+ **Install and inspect `tigrbl_engine_postgres`: [download `tigrbl_engine_postgres` from PyPI](https://pypi.org/project/tigrbl_engine_postgres/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres).**
55
+
56
+ tigrbl_engine_postgres is a PostgreSQL engine plugin for PostgreSQL SQLAlchemy sessions and engine registration for Tigrbl applications.
57
+
58
+ `tigrbl_engine_postgres` is part of the Tigrbl package graph. It documents package-resident classes, concepts, extension points, and execution responsibilities while cross-linking to the facade, core specs, canonical mapping, runtime phases, concrete objects, operation packages, engine plugins, and Rust crates that complete the system.
59
+
60
+ ## Engine ownership and database guards
61
+
62
+ - PostgreSQL connection/session lifecycle, SQLAlchemy/psycopg integration, transaction boundaries, remote database guardrails, and production database configuration.
63
+ - Engine packages document backend-specific connection settings, session construction, transaction behavior, persistence boundaries, and operational guardrails. Transport routing and operation semantics remain in the facade/canon/runtime/ops packages.
64
+ - Register this engine through the package entry point or the Tigrbl engine context so API code can select the backend without embedding backend-specific logic in model definitions.
65
+
66
+ ## Package ecosystem cross-links
67
+
68
+ Core cross-links:
69
+ - [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
70
+ - [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
71
+ - [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
72
+ - [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
73
+ - [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
74
+ - [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
75
+ - [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
76
+ - [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
77
+ - [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
78
+ Engine cross-links:
79
+ - [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
80
+ - [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
81
+ - [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
82
+ - [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
83
+ - [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
84
+ - [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
85
+ - [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
86
+ Rust cross-links:
87
+ - [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
88
+ - [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
89
+ - [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
90
+ - [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
91
+ - [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
92
+
93
+ ## Install
94
+
95
+ ```bash
96
+ pip install tigrbl_engine_postgres
97
+ ```
98
+
99
+ ## Package discovery
100
+
101
+ Search and AI discovery terms for `tigrbl_engine_postgres` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, postgres, postgresql, psycopg.
102
+
103
+ ## Package-local entry point
104
+
105
+ This file is a package-local distribution entry point.
106
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
107
+
108
+ ## Canonical repository docs
109
+
110
+ - `README.md`
111
+ - `docs/README.md`
112
+ - `docs/conformance/CURRENT_TARGET.md`
113
+ - `docs/conformance/CURRENT_STATE.md`
114
+ - `docs/conformance/NEXT_STEPS.md`
115
+ - `docs/governance/DOC_POINTERS.md`
116
+ - `docs/developer/PACKAGE_CATALOG.md`
117
+ - `docs/developer/PACKAGE_LAYOUT.md`
118
+
119
+ ## Package identity
120
+
121
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
122
+ - organization: `https://github.com/tigrbl`
123
+ - social: `https://discord.gg/K4YTAPapjR`
124
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres`
125
+ - workspace path: `pkgs/engines/tigrbl_engine_postgres`
126
+ - workspace class: engine package
127
+ - implementation layout: `src/tigrbl_engine_postgres/`
128
+
129
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,95 @@
1
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
2
+
3
+ <p align="center">
4
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
5
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_postgres" alt="PyPI downloads for tigrbl_engine_postgres"/></a>
6
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres/">
7
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres.svg" alt="Repository views for tigrbl_engine_postgres"/></a>
8
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
9
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_postgres" alt="Supported Python versions for tigrbl_engine_postgres"/></a>
10
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
11
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_postgres" alt="PyPI license metadata for tigrbl_engine_postgres"/></a>
12
+ <a href="https://pypi.org/project/tigrbl_engine_postgres/">
13
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_postgres?label=tigrbl_engine_postgres&color=green" alt="PyPI version for tigrbl_engine_postgres"/></a>
14
+ </p>
15
+
16
+ ---
17
+
18
+ # Tigrbl engine-postgres
19
+
20
+ **Install and inspect `tigrbl_engine_postgres`: [download `tigrbl_engine_postgres` from PyPI](https://pypi.org/project/tigrbl_engine_postgres/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres).**
21
+
22
+ tigrbl_engine_postgres is a PostgreSQL engine plugin for PostgreSQL SQLAlchemy sessions and engine registration for Tigrbl applications.
23
+
24
+ `tigrbl_engine_postgres` is part of the Tigrbl package graph. It documents package-resident classes, concepts, extension points, and execution responsibilities while cross-linking to the facade, core specs, canonical mapping, runtime phases, concrete objects, operation packages, engine plugins, and Rust crates that complete the system.
25
+
26
+ ## Engine ownership and database guards
27
+
28
+ - PostgreSQL connection/session lifecycle, SQLAlchemy/psycopg integration, transaction boundaries, remote database guardrails, and production database configuration.
29
+ - Engine packages document backend-specific connection settings, session construction, transaction behavior, persistence boundaries, and operational guardrails. Transport routing and operation semantics remain in the facade/canon/runtime/ops packages.
30
+ - Register this engine through the package entry point or the Tigrbl engine context so API code can select the backend without embedding backend-specific logic in model definitions.
31
+
32
+ ## Package ecosystem cross-links
33
+
34
+ Core cross-links:
35
+ - [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
36
+ - [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
37
+ - [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
38
+ - [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
39
+ - [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
40
+ - [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
41
+ - [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
42
+ - [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
43
+ - [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
44
+ Engine cross-links:
45
+ - [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
46
+ - [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
47
+ - [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
48
+ - [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
49
+ - [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
50
+ - [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
51
+ - [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
52
+ Rust cross-links:
53
+ - [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
54
+ - [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
55
+ - [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
56
+ - [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
57
+ - [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
58
+
59
+ ## Install
60
+
61
+ ```bash
62
+ pip install tigrbl_engine_postgres
63
+ ```
64
+
65
+ ## Package discovery
66
+
67
+ Search and AI discovery terms for `tigrbl_engine_postgres` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, postgres, postgresql, psycopg.
68
+
69
+ ## Package-local entry point
70
+
71
+ This file is a package-local distribution entry point.
72
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
73
+
74
+ ## Canonical repository docs
75
+
76
+ - `README.md`
77
+ - `docs/README.md`
78
+ - `docs/conformance/CURRENT_TARGET.md`
79
+ - `docs/conformance/CURRENT_STATE.md`
80
+ - `docs/conformance/NEXT_STEPS.md`
81
+ - `docs/governance/DOC_POINTERS.md`
82
+ - `docs/developer/PACKAGE_CATALOG.md`
83
+ - `docs/developer/PACKAGE_LAYOUT.md`
84
+
85
+ ## Package identity
86
+
87
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
88
+ - organization: `https://github.com/tigrbl`
89
+ - social: `https://discord.gg/K4YTAPapjR`
90
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres`
91
+ - workspace path: `pkgs/engines/tigrbl_engine_postgres`
92
+ - workspace class: engine package
93
+ - implementation layout: `src/tigrbl_engine_postgres/`
94
+
95
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,68 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.25.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tigrbl_engine_postgres"
7
+ version = "0.4.0"
8
+ description = "tigrbl_engine_postgres is a PostgreSQL engine plugin for PostgreSQL SQLAlchemy sessions and engine registration for Tigrbl applications."
9
+ readme = "README.md"
10
+ license = "Apache-2.0"
11
+ keywords = [
12
+ "tigrbl",
13
+ "asgi",
14
+ "api",
15
+ "json-rpc",
16
+ "rest",
17
+ "sqlalchemy",
18
+ "pydantic",
19
+ "engine",
20
+ "plugin",
21
+ "database",
22
+ "postgres",
23
+ "postgresql",
24
+ "psycopg",
25
+ ]
26
+ classifiers = [
27
+ "Development Status :: 3 - Alpha",
28
+ "Intended Audience :: Developers",
29
+ "Intended Audience :: Information Technology",
30
+ "Operating System :: OS Independent",
31
+ "Programming Language :: Python",
32
+ "Programming Language :: Python :: 3",
33
+ "Programming Language :: Python :: 3 :: Only",
34
+ "Programming Language :: Python :: 3.10",
35
+ "Programming Language :: Python :: 3.11",
36
+ "Programming Language :: Python :: 3.12",
37
+ "Programming Language :: Python :: 3.13",
38
+ "Topic :: Internet :: WWW/HTTP",
39
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
40
+ "Topic :: Software Development :: Libraries :: Python Modules",
41
+ "Topic :: Database",
42
+ ]
43
+ authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
44
+ requires-python = ">=3.10,<3.14"
45
+ dependencies = [
46
+ "SQLAlchemy>=2.0,<3.0",
47
+ "psycopg[binary]>=3.1,<4.0",
48
+ "tigrbl>=0.3.0.dev4",
49
+ ]
50
+
51
+
52
+ [project.urls]
53
+ Organization = "https://github.com/tigrbl"
54
+ Discord = "https://discord.gg/K4YTAPapjR"
55
+ Homepage = "https://github.com/tigrbl/tigrbl"
56
+ Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres"
57
+ Issues = "https://github.com/tigrbl/tigrbl/issues"
58
+
59
+ [project.entry-points."tigrbl.engine"]
60
+ postgres = "tigrbl_engine_postgres:register"
61
+
62
+ [dependency-groups]
63
+ dev = [
64
+ "ruff>=0.11.0",
65
+ ]
66
+
67
+ [tool.uv.sources]
68
+ tigrbl = { workspace = true }
@@ -1,53 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: tigrbl_engine_postgres
3
- Version: 0.1.12.dev1
4
- Summary: PostgreSQL engine plugin for Tigrbl.
5
- Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
6
- Author-email: Jacob Stewart <jacob@swarmauri.com>
7
- License-Expression: Apache-2.0
8
- License-File: LICENSE
9
- Keywords: engine,postgres,psycopg,sqlalchemy,tigrbl
10
- Classifier: Development Status :: 1 - Planning
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Requires-Python: <3.14,>=3.10
16
- Requires-Dist: psycopg[binary]<4.0,>=3.1
17
- Requires-Dist: sqlalchemy<3.0,>=2.0
18
- Requires-Dist: tigrbl>=0.3.0.dev4
19
- Description-Content-Type: text/markdown
20
-
21
- # tigrbl_engine_postgres
22
-
23
- PostgreSQL engine plugin for **Tigrbl**.
24
-
25
- ## Install
26
-
27
- ```bash
28
- pip install tigrbl_engine_postgres
29
- ```
30
-
31
- ## Use
32
-
33
- ```python
34
- from tigrbl.engine.decorators import engine_ctx
35
-
36
- @engine_ctx({"kind": "postgres", "dsn": "postgresql+psycopg://user:pwd@localhost:5432/app"})
37
- class AppAPI:
38
- pass
39
- ```
40
-
41
- The plugin auto-registers via the `tigrbl.engine` entry point.
42
- ## Canonical documentation
43
-
44
- This file is a package-local distribution entry point. Authoritative workspace guidance lives in:
45
-
46
- - `docs/README.md`
47
- - `docs/conformance/CURRENT_TARGET.md`
48
- - `docs/conformance/CURRENT_STATE.md`
49
- - `docs/conformance/NEXT_STEPS.md`
50
- - `docs/governance/DOC_POINTERS.md`
51
- - `docs/developer/PACKAGE_CATALOG.md`
52
- - `docs/developer/PACKAGE_LAYOUT.md`
53
-
@@ -1,33 +0,0 @@
1
- # tigrbl_engine_postgres
2
-
3
- PostgreSQL engine plugin for **Tigrbl**.
4
-
5
- ## Install
6
-
7
- ```bash
8
- pip install tigrbl_engine_postgres
9
- ```
10
-
11
- ## Use
12
-
13
- ```python
14
- from tigrbl.engine.decorators import engine_ctx
15
-
16
- @engine_ctx({"kind": "postgres", "dsn": "postgresql+psycopg://user:pwd@localhost:5432/app"})
17
- class AppAPI:
18
- pass
19
- ```
20
-
21
- The plugin auto-registers via the `tigrbl.engine` entry point.
22
- ## Canonical documentation
23
-
24
- This file is a package-local distribution entry point. Authoritative workspace guidance lives in:
25
-
26
- - `docs/README.md`
27
- - `docs/conformance/CURRENT_TARGET.md`
28
- - `docs/conformance/CURRENT_STATE.md`
29
- - `docs/conformance/NEXT_STEPS.md`
30
- - `docs/governance/DOC_POINTERS.md`
31
- - `docs/developer/PACKAGE_CATALOG.md`
32
- - `docs/developer/PACKAGE_LAYOUT.md`
33
-
@@ -1,39 +0,0 @@
1
- [build-system]
2
- requires = ["hatchling>=1.25.0"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "tigrbl_engine_postgres"
7
- version = "0.1.12.dev1"
8
- description = "PostgreSQL engine plugin for Tigrbl."
9
- readme = "README.md"
10
- license = "Apache-2.0"
11
- authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
12
- keywords = ["tigrbl", "engine", "postgres", "sqlalchemy", "psycopg"]
13
- requires-python = ">=3.10,<3.14"
14
- classifiers = [
15
- "Development Status :: 1 - Planning",
16
- "Programming Language :: Python :: 3.10",
17
- "Programming Language :: Python :: 3.11",
18
- "Programming Language :: Python :: 3.12",
19
- "Programming Language :: Python :: 3.13",
20
- ]
21
- dependencies = [
22
- "SQLAlchemy>=2.0,<3.0",
23
- "psycopg[binary]>=3.1,<4.0",
24
- "tigrbl>=0.3.0.dev4",
25
- ]
26
-
27
- [project.urls]
28
- Homepage = "https://github.com/swarmauri/swarmauri-sdk"
29
-
30
- [project.entry-points."tigrbl.engine"]
31
- postgres = "tigrbl_engine_postgres:register"
32
-
33
- [dependency-groups]
34
- dev = [
35
- "ruff>=0.11.0",
36
- ]
37
-
38
- [tool.uv.sources]
39
- tigrbl = { workspace = true }