tigrbl_engine_dataframe 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,128 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl_engine_dataframe
3
+ Version: 0.4.0
4
+ Summary: tigrbl_engine_dataframe is a DataFrame engine plugin for transactional pandas DataFrame sessions for in-process Tigrbl workloads.
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_dataframe
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,dataframe,engine,json-rpc,pandas,plugin,pydantic,rest,sqlalchemy,tigrbl,transactions
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: pandas>=2.0
31
+ Requires-Dist: tigrbl
32
+ Description-Content-Type: text/markdown
33
+
34
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
35
+
36
+ <p align="center">
37
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
38
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_dataframe" alt="PyPI downloads for tigrbl_engine_dataframe"/></a>
39
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe/">
40
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe.svg" alt="Repository views for tigrbl_engine_dataframe"/></a>
41
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
42
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_dataframe" alt="Supported Python versions for tigrbl_engine_dataframe"/></a>
43
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
44
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_dataframe" alt="PyPI license metadata for tigrbl_engine_dataframe"/></a>
45
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
46
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_dataframe?label=tigrbl_engine_dataframe&color=green" alt="PyPI version for tigrbl_engine_dataframe"/></a>
47
+ </p>
48
+
49
+ ---
50
+
51
+ # Tigrbl engine-dataframe
52
+
53
+ **Install and inspect `tigrbl_engine_dataframe`: [download `tigrbl_engine_dataframe` from PyPI](https://pypi.org/project/tigrbl_engine_dataframe/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe).**
54
+
55
+ tigrbl_engine_dataframe is a DataFrame engine plugin for transactional pandas DataFrame sessions for in-process Tigrbl workloads.
56
+
57
+ `tigrbl_engine_dataframe` 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.
58
+
59
+ ## Engine ownership and database guards
60
+
61
+ - transactional pandas DataFrame sessions, DataFrame-backed tables, and in-process analytical operation guardrails.
62
+ - 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.
63
+ - 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.
64
+
65
+ ## Package ecosystem cross-links
66
+
67
+ Core cross-links:
68
+ - [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
69
+ - [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
70
+ - [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
71
+ - [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
72
+ - [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
73
+ - [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
74
+ - [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
75
+ - [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
76
+ - [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
77
+ Engine cross-links:
78
+ - [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
79
+ - [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
80
+ - [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
81
+ - [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
82
+ - [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
83
+ - [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
84
+ - [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
85
+ Rust cross-links:
86
+ - [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
87
+ - [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
88
+ - [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
89
+ - [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
90
+ - [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
91
+
92
+ ## Install
93
+
94
+ ```bash
95
+ pip install tigrbl_engine_dataframe
96
+ ```
97
+
98
+ ## Package discovery
99
+
100
+ Search and AI discovery terms for `tigrbl_engine_dataframe` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, dataframe, pandas, transactions.
101
+
102
+ ## Package-local entry point
103
+
104
+ This file is a package-local distribution entry point.
105
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
106
+
107
+ ## Canonical repository docs
108
+
109
+ - `README.md`
110
+ - `docs/README.md`
111
+ - `docs/conformance/CURRENT_TARGET.md`
112
+ - `docs/conformance/CURRENT_STATE.md`
113
+ - `docs/conformance/NEXT_STEPS.md`
114
+ - `docs/governance/DOC_POINTERS.md`
115
+ - `docs/developer/PACKAGE_CATALOG.md`
116
+ - `docs/developer/PACKAGE_LAYOUT.md`
117
+
118
+ ## Package identity
119
+
120
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
121
+ - organization: `https://github.com/tigrbl`
122
+ - social: `https://discord.gg/K4YTAPapjR`
123
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe`
124
+ - workspace path: `pkgs/engines/tigrbl_engine_dataframe`
125
+ - workspace class: engine package
126
+ - implementation layout: `src/tigrbl_engine_dataframe/`
127
+
128
+ 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_dataframe/">
5
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_dataframe" alt="PyPI downloads for tigrbl_engine_dataframe"/></a>
6
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe/">
7
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe.svg" alt="Repository views for tigrbl_engine_dataframe"/></a>
8
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
9
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_dataframe" alt="Supported Python versions for tigrbl_engine_dataframe"/></a>
10
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
11
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_dataframe" alt="PyPI license metadata for tigrbl_engine_dataframe"/></a>
12
+ <a href="https://pypi.org/project/tigrbl_engine_dataframe/">
13
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_dataframe?label=tigrbl_engine_dataframe&color=green" alt="PyPI version for tigrbl_engine_dataframe"/></a>
14
+ </p>
15
+
16
+ ---
17
+
18
+ # Tigrbl engine-dataframe
19
+
20
+ **Install and inspect `tigrbl_engine_dataframe`: [download `tigrbl_engine_dataframe` from PyPI](https://pypi.org/project/tigrbl_engine_dataframe/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe).**
21
+
22
+ tigrbl_engine_dataframe is a DataFrame engine plugin for transactional pandas DataFrame sessions for in-process Tigrbl workloads.
23
+
24
+ `tigrbl_engine_dataframe` 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
+ - transactional pandas DataFrame sessions, DataFrame-backed tables, and in-process analytical operation guardrails.
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_dataframe
63
+ ```
64
+
65
+ ## Package discovery
66
+
67
+ Search and AI discovery terms for `tigrbl_engine_dataframe` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, dataframe, pandas, transactions.
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_dataframe`
91
+ - workspace path: `pkgs/engines/tigrbl_engine_dataframe`
92
+ - workspace class: engine package
93
+ - implementation layout: `src/tigrbl_engine_dataframe/`
94
+
95
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,79 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.20"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tigrbl_engine_dataframe"
7
+ version = "0.4.0"
8
+ description = "tigrbl_engine_dataframe is a DataFrame engine plugin for transactional pandas DataFrame sessions for in-process Tigrbl workloads."
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
+ "dataframe",
23
+ "pandas",
24
+ "transactions",
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
+ "pandas>=2.0",
47
+ "tigrbl",
48
+ ]
49
+
50
+
51
+ [project.urls]
52
+ Organization = "https://github.com/tigrbl"
53
+ Discord = "https://discord.gg/K4YTAPapjR"
54
+ Homepage = "https://github.com/tigrbl/tigrbl"
55
+ Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_dataframe"
56
+ Issues = "https://github.com/tigrbl/tigrbl/issues"
57
+
58
+ [project.entry-points."tigrbl.engine"]
59
+ dataframe = "tigrbl_engine_dataframe:register"
60
+
61
+ [tool.hatch.build.targets.wheel]
62
+ packages = ["src/tigrbl_engine_dataframe"]
63
+
64
+ [dependency-groups]
65
+ dev = [
66
+ "pytest>=8.0",
67
+ "pytest-asyncio>=0.24.0",
68
+ "pytest-xdist>=3.6.1",
69
+ "pytest-json-report>=1.5.0",
70
+ "python-dotenv",
71
+ "requests>=2.32.3",
72
+ "flake8>=7.0",
73
+ "pytest-timeout>=2.3.1",
74
+ "ruff>=0.9.9",
75
+ "pytest-benchmark>=4.0.0",
76
+ ]
77
+
78
+ [tool.uv.sources]
79
+ tigrbl = { workspace = true }
@@ -1,6 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
- from typing import Any, Callable, Dict, List, Mapping, Optional, Sequence, Tuple
3
+ from typing import TYPE_CHECKING, Any, Callable, Dict, List, Mapping, Optional, Sequence, Tuple
4
4
 
5
5
  import pandas as pd
6
6
 
@@ -112,7 +112,8 @@ except Exception:
112
112
  pass
113
113
 
114
114
 
115
- from .df_engine import DataFrameCatalog
115
+ if TYPE_CHECKING:
116
+ from .df_engine import DataFrameCatalog
116
117
 
117
118
  # ---- Result facades compatible with Tigrbl CRUD ----
118
119
 
@@ -1,50 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: tigrbl_engine_dataframe
3
- Version: 0.1.12.dev1
4
- Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
5
- Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
6
- Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_dataframe
7
- Author-email: Jacob Stewart <jacob@swarmauri.com>
8
- License-Expression: Apache-2.0
9
- License-File: LICENSE
10
- Keywords: database,dataframe,engine,pandas,plugin,tigrbl
11
- Classifier: Development Status :: 1 - Planning
12
- Classifier: Environment :: Plugins
13
- Classifier: Intended Audience :: Developers
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3 :: Only
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Programming Language :: Python :: 3.13
21
- Classifier: Topic :: Database
22
- Classifier: Topic :: Software Development :: Libraries
23
- Requires-Python: <3.14,>=3.10
24
- Requires-Dist: pandas>=2.0
25
- Requires-Dist: tigrbl
26
- Description-Content-Type: text/markdown
27
-
28
- # tigrbl_engine_dataframe
29
-
30
- This file is a package-local distribution entry point.
31
- It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
32
-
33
- ## Canonical repository docs
34
-
35
- - `README.md`
36
- - `docs/README.md`
37
- - `docs/conformance/CURRENT_TARGET.md`
38
- - `docs/conformance/CURRENT_STATE.md`
39
- - `docs/conformance/NEXT_STEPS.md`
40
- - `docs/governance/DOC_POINTERS.md`
41
- - `docs/developer/PACKAGE_CATALOG.md`
42
- - `docs/developer/PACKAGE_LAYOUT.md`
43
-
44
- ## Package identity
45
-
46
- - workspace path: `pkgs/engines/tigrbl_engine_dataframe`
47
- - workspace class: engine package
48
- - implementation layout: `src/tigrbl_engine_dataframe/`
49
-
50
- Long-form repository documentation is governed from `docs/`.
@@ -1,23 +0,0 @@
1
- # tigrbl_engine_dataframe
2
-
3
- This file is a package-local distribution entry point.
4
- It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
5
-
6
- ## Canonical repository docs
7
-
8
- - `README.md`
9
- - `docs/README.md`
10
- - `docs/conformance/CURRENT_TARGET.md`
11
- - `docs/conformance/CURRENT_STATE.md`
12
- - `docs/conformance/NEXT_STEPS.md`
13
- - `docs/governance/DOC_POINTERS.md`
14
- - `docs/developer/PACKAGE_CATALOG.md`
15
- - `docs/developer/PACKAGE_LAYOUT.md`
16
-
17
- ## Package identity
18
-
19
- - workspace path: `pkgs/engines/tigrbl_engine_dataframe`
20
- - workspace class: engine package
21
- - implementation layout: `src/tigrbl_engine_dataframe/`
22
-
23
- Long-form repository documentation is governed from `docs/`.
@@ -1,65 +0,0 @@
1
- [build-system]
2
- requires = ["hatchling>=1.20"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "tigrbl_engine_dataframe"
7
- version = "0.1.12.dev1"
8
- description = "Tigrbl engine plugin providing transactional pandas DataFrame sessions."
9
- readme = "README.md"
10
- license = "Apache-2.0"
11
- authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
12
- requires-python = ">=3.10,<3.14"
13
- classifiers = [
14
- "Development Status :: 1 - Planning",
15
- "Programming Language :: Python",
16
- "Programming Language :: Python :: 3",
17
- "Programming Language :: Python :: 3 :: Only",
18
- "Programming Language :: Python :: 3.10",
19
- "Programming Language :: Python :: 3.11",
20
- "Programming Language :: Python :: 3.12",
21
- "Programming Language :: Python :: 3.13",
22
- "Environment :: Plugins",
23
- "Intended Audience :: Developers",
24
- "Topic :: Database",
25
- "Topic :: Software Development :: Libraries",
26
- ]
27
- keywords = [
28
- "tigrbl",
29
- "engine",
30
- "plugin",
31
- "dataframe",
32
- "pandas",
33
- "database",
34
- ]
35
- dependencies = [
36
- "pandas>=2.0",
37
- "tigrbl",
38
- ]
39
-
40
- [project.urls]
41
- Homepage = "https://github.com/swarmauri/swarmauri-sdk"
42
- Repository = "https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_dataframe"
43
-
44
- [project.entry-points."tigrbl.engine"]
45
- dataframe = "tigrbl_engine_dataframe:register"
46
-
47
- [tool.hatch.build.targets.wheel]
48
- packages = ["src/tigrbl_engine_dataframe"]
49
-
50
- [dependency-groups]
51
- dev = [
52
- "pytest>=8.0",
53
- "pytest-asyncio>=0.24.0",
54
- "pytest-xdist>=3.6.1",
55
- "pytest-json-report>=1.5.0",
56
- "python-dotenv",
57
- "requests>=2.32.3",
58
- "flake8>=7.0",
59
- "pytest-timeout>=2.3.1",
60
- "ruff>=0.9.9",
61
- "pytest-benchmark>=4.0.0",
62
- ]
63
-
64
- [tool.uv.sources]
65
- tigrbl = { workspace = true }