tigrbl-orm 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.
- tigrbl_orm-0.4.0/PKG-INFO +126 -0
- tigrbl_orm-0.4.0/README.md +94 -0
- tigrbl_orm-0.4.0/pyproject.toml +62 -0
- tigrbl_orm-0.1.12.dev1/PKG-INFO +0 -44
- tigrbl_orm-0.1.12.dev1/README.md +0 -23
- tigrbl_orm-0.1.12.dev1/pyproject.toml +0 -38
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/__init__.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/_RowBound.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/__init__.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/bootstrappable.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/bound.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/edges.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/fields.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/hierarchy.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/key_digest.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/lifecycle.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/locks.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/markers.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/operations.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/ownable.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/principals.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/tenant_bound.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/upsertable.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/mixins/utils.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/__init__.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/_base.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/audit.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/client.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/group.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/org.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/rbac.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/status.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/tenant.py +0 -0
- {tigrbl_orm-0.1.12.dev1 → tigrbl_orm-0.4.0}/tigrbl_orm/orm/tables/user.py +0 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tigrbl-orm
|
|
3
|
+
Version: 0.4.0
|
|
4
|
+
Summary: tigrbl-orm is an ORM package for SQLAlchemy ORM tables, mixins, and model helpers for Tigrbl applications.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Keywords: tigrbl,asgi,api,json-rpc,rest,sqlalchemy,pydantic,orm,models
|
|
7
|
+
Author: Jacob Stewart
|
|
8
|
+
Author-email: jacob@swarmauri.com
|
|
9
|
+
Requires-Python: >=3.10,<3.14
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Information Technology
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
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 :: Internet :: WWW/HTTP
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Requires-Dist: sqlalchemy (>=2.0)
|
|
25
|
+
Project-URL: Discord, https://discord.gg/K4YTAPapjR
|
|
26
|
+
Project-URL: Homepage, https://github.com/tigrbl/tigrbl
|
|
27
|
+
Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
|
|
28
|
+
Project-URL: Organization, https://github.com/tigrbl
|
|
29
|
+
Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
<p align="center">
|
|
35
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
36
|
+
<img src="https://img.shields.io/pypi/dm/tigrbl-orm" alt="PyPI downloads for tigrbl-orm"/></a>
|
|
37
|
+
<a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm/">
|
|
38
|
+
<img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm.svg" alt="Repository views for tigrbl-orm"/></a>
|
|
39
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
40
|
+
<img src="https://img.shields.io/pypi/pyversions/tigrbl-orm" alt="Supported Python versions for tigrbl-orm"/></a>
|
|
41
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
42
|
+
<img src="https://img.shields.io/pypi/l/tigrbl-orm" alt="PyPI license metadata for tigrbl-orm"/></a>
|
|
43
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
44
|
+
<img src="https://img.shields.io/pypi/v/tigrbl-orm?label=tigrbl-orm&color=green" alt="PyPI version for tigrbl-orm"/></a>
|
|
45
|
+
</p>
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
# Tigrbl orm
|
|
50
|
+
|
|
51
|
+
**Install and inspect `tigrbl-orm`: [download `tigrbl-orm` from PyPI](https://pypi.org/project/tigrbl-orm/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm).**
|
|
52
|
+
|
|
53
|
+
tigrbl-orm is an ORM package for SQLAlchemy ORM tables, mixins, and model helpers for Tigrbl applications.
|
|
54
|
+
|
|
55
|
+
`tigrbl-orm` 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.
|
|
56
|
+
|
|
57
|
+
## Package ownership
|
|
58
|
+
|
|
59
|
+
- `tigrbl-orm` documents the concepts implemented in `pkgs/core/tigrbl_orm` and links to the Tigrbl packages that provide neighboring authoring, canon, runtime, operation, and engine behavior.
|
|
60
|
+
- Use this README as the package-local explanation for the objects that live here; use governed docs for release state, certification, and evidence.
|
|
61
|
+
|
|
62
|
+
## Package ecosystem cross-links
|
|
63
|
+
|
|
64
|
+
Core cross-links:
|
|
65
|
+
- [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
|
|
66
|
+
- [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
|
|
67
|
+
- [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
|
|
68
|
+
- [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
|
|
69
|
+
- [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
|
|
70
|
+
- [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
|
|
71
|
+
- [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
|
|
72
|
+
- [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
|
|
73
|
+
- [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
|
|
74
|
+
Engine cross-links:
|
|
75
|
+
- [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
|
|
76
|
+
- [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
|
|
77
|
+
- [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
|
|
78
|
+
- [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
|
|
79
|
+
- [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
|
|
80
|
+
- [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
|
|
81
|
+
- [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
|
|
82
|
+
Rust cross-links:
|
|
83
|
+
- [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
|
|
84
|
+
- [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
|
|
85
|
+
- [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
|
|
86
|
+
- [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
|
|
87
|
+
- [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
|
|
88
|
+
|
|
89
|
+
## Install
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
pip install tigrbl-orm
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Package discovery
|
|
96
|
+
|
|
97
|
+
Search and AI discovery terms for `tigrbl-orm` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, orm, models.
|
|
98
|
+
|
|
99
|
+
## Package-local entry point
|
|
100
|
+
|
|
101
|
+
This file is a package-local distribution entry point.
|
|
102
|
+
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
103
|
+
|
|
104
|
+
## Canonical repository docs
|
|
105
|
+
|
|
106
|
+
- `README.md`
|
|
107
|
+
- `docs/README.md`
|
|
108
|
+
- `docs/conformance/CURRENT_TARGET.md`
|
|
109
|
+
- `docs/conformance/CURRENT_STATE.md`
|
|
110
|
+
- `docs/conformance/NEXT_STEPS.md`
|
|
111
|
+
- `docs/governance/DOC_POINTERS.md`
|
|
112
|
+
- `docs/developer/PACKAGE_CATALOG.md`
|
|
113
|
+
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
114
|
+
|
|
115
|
+
## Package identity
|
|
116
|
+
|
|
117
|
+
- canonical repository: `https://github.com/tigrbl/tigrbl`
|
|
118
|
+
- organization: `https://github.com/tigrbl`
|
|
119
|
+
- social: `https://discord.gg/K4YTAPapjR`
|
|
120
|
+
- package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm`
|
|
121
|
+
- workspace path: `pkgs/core/tigrbl_orm`
|
|
122
|
+
- workspace class: core Python package
|
|
123
|
+
- implementation layout: `tigrbl_orm/`
|
|
124
|
+
|
|
125
|
+
Long-form repository documentation is governed from `docs/`.
|
|
126
|
+
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
5
|
+
<img src="https://img.shields.io/pypi/dm/tigrbl-orm" alt="PyPI downloads for tigrbl-orm"/></a>
|
|
6
|
+
<a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm/">
|
|
7
|
+
<img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm.svg" alt="Repository views for tigrbl-orm"/></a>
|
|
8
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
9
|
+
<img src="https://img.shields.io/pypi/pyversions/tigrbl-orm" alt="Supported Python versions for tigrbl-orm"/></a>
|
|
10
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
11
|
+
<img src="https://img.shields.io/pypi/l/tigrbl-orm" alt="PyPI license metadata for tigrbl-orm"/></a>
|
|
12
|
+
<a href="https://pypi.org/project/tigrbl-orm/">
|
|
13
|
+
<img src="https://img.shields.io/pypi/v/tigrbl-orm?label=tigrbl-orm&color=green" alt="PyPI version for tigrbl-orm"/></a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# Tigrbl orm
|
|
19
|
+
|
|
20
|
+
**Install and inspect `tigrbl-orm`: [download `tigrbl-orm` from PyPI](https://pypi.org/project/tigrbl-orm/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm).**
|
|
21
|
+
|
|
22
|
+
tigrbl-orm is an ORM package for SQLAlchemy ORM tables, mixins, and model helpers for Tigrbl applications.
|
|
23
|
+
|
|
24
|
+
`tigrbl-orm` 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
|
+
## Package ownership
|
|
27
|
+
|
|
28
|
+
- `tigrbl-orm` documents the concepts implemented in `pkgs/core/tigrbl_orm` and links to the Tigrbl packages that provide neighboring authoring, canon, runtime, operation, and engine behavior.
|
|
29
|
+
- Use this README as the package-local explanation for the objects that live here; use governed docs for release state, certification, and evidence.
|
|
30
|
+
|
|
31
|
+
## Package ecosystem cross-links
|
|
32
|
+
|
|
33
|
+
Core cross-links:
|
|
34
|
+
- [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
|
|
35
|
+
- [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
|
|
36
|
+
- [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
|
|
37
|
+
- [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
|
|
38
|
+
- [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
|
|
39
|
+
- [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
|
|
40
|
+
- [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
|
|
41
|
+
- [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
|
|
42
|
+
- [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
|
|
43
|
+
Engine cross-links:
|
|
44
|
+
- [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
|
|
45
|
+
- [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
|
|
46
|
+
- [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
|
|
47
|
+
- [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
|
|
48
|
+
- [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
|
|
49
|
+
- [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
|
|
50
|
+
- [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
|
|
51
|
+
Rust cross-links:
|
|
52
|
+
- [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
|
|
53
|
+
- [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
|
|
54
|
+
- [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
|
|
55
|
+
- [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
|
|
56
|
+
- [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
|
|
57
|
+
|
|
58
|
+
## Install
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
pip install tigrbl-orm
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Package discovery
|
|
65
|
+
|
|
66
|
+
Search and AI discovery terms for `tigrbl-orm` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, orm, models.
|
|
67
|
+
|
|
68
|
+
## Package-local entry point
|
|
69
|
+
|
|
70
|
+
This file is a package-local distribution entry point.
|
|
71
|
+
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
72
|
+
|
|
73
|
+
## Canonical repository docs
|
|
74
|
+
|
|
75
|
+
- `README.md`
|
|
76
|
+
- `docs/README.md`
|
|
77
|
+
- `docs/conformance/CURRENT_TARGET.md`
|
|
78
|
+
- `docs/conformance/CURRENT_STATE.md`
|
|
79
|
+
- `docs/conformance/NEXT_STEPS.md`
|
|
80
|
+
- `docs/governance/DOC_POINTERS.md`
|
|
81
|
+
- `docs/developer/PACKAGE_CATALOG.md`
|
|
82
|
+
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
83
|
+
|
|
84
|
+
## Package identity
|
|
85
|
+
|
|
86
|
+
- canonical repository: `https://github.com/tigrbl/tigrbl`
|
|
87
|
+
- organization: `https://github.com/tigrbl`
|
|
88
|
+
- social: `https://discord.gg/K4YTAPapjR`
|
|
89
|
+
- package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm`
|
|
90
|
+
- workspace path: `pkgs/core/tigrbl_orm`
|
|
91
|
+
- workspace class: core Python package
|
|
92
|
+
- implementation layout: `tigrbl_orm/`
|
|
93
|
+
|
|
94
|
+
Long-form repository documentation is governed from `docs/`.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "tigrbl-orm"
|
|
3
|
+
version = "0.4.0"
|
|
4
|
+
description = "tigrbl-orm is an ORM package for SQLAlchemy ORM tables, mixins, and model helpers for Tigrbl applications."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
keywords = [
|
|
8
|
+
"tigrbl",
|
|
9
|
+
"asgi",
|
|
10
|
+
"api",
|
|
11
|
+
"json-rpc",
|
|
12
|
+
"rest",
|
|
13
|
+
"sqlalchemy",
|
|
14
|
+
"pydantic",
|
|
15
|
+
"orm",
|
|
16
|
+
"models",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Intended Audience :: Information Technology",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python",
|
|
24
|
+
"Programming Language :: Python :: 3",
|
|
25
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Programming Language :: Python :: 3.13",
|
|
30
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
31
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
32
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
33
|
+
]
|
|
34
|
+
requires-python = ">=3.10,<3.14"
|
|
35
|
+
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
36
|
+
|
|
37
|
+
dependencies = [
|
|
38
|
+
"sqlalchemy>=2.0",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
[project.urls]
|
|
43
|
+
Organization = "https://github.com/tigrbl"
|
|
44
|
+
Discord = "https://discord.gg/K4YTAPapjR"
|
|
45
|
+
Homepage = "https://github.com/tigrbl/tigrbl"
|
|
46
|
+
Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_orm"
|
|
47
|
+
Issues = "https://github.com/tigrbl/tigrbl/issues"
|
|
48
|
+
|
|
49
|
+
[build-system]
|
|
50
|
+
requires = ["poetry-core>=1.0.0"]
|
|
51
|
+
build-backend = "poetry.core.masonry.api"
|
|
52
|
+
|
|
53
|
+
[tool.poetry]
|
|
54
|
+
packages = [
|
|
55
|
+
{ include = "tigrbl_orm" },
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[dependency-groups]
|
|
59
|
+
dev = [
|
|
60
|
+
"pytest>=8.0",
|
|
61
|
+
"ruff>=0.9",
|
|
62
|
+
]
|
tigrbl_orm-0.1.12.dev1/PKG-INFO
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tigrbl-orm
|
|
3
|
-
Version: 0.1.12.dev1
|
|
4
|
-
Summary: ORM tables and mixins for the Tigrbl framework.
|
|
5
|
-
License-Expression: Apache-2.0
|
|
6
|
-
Keywords: tigrbl,orm,sqlalchemy,sdk,standards
|
|
7
|
-
Author: Jacob Stewart
|
|
8
|
-
Author-email: jacob@swarmauri.com
|
|
9
|
-
Requires-Python: >=3.10,<3.14
|
|
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
|
-
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
-
Requires-Dist: sqlalchemy (>=2.0)
|
|
19
|
-
Description-Content-Type: text/markdown
|
|
20
|
-
|
|
21
|
-
# tigrbl_orm
|
|
22
|
-
|
|
23
|
-
This file is a package-local distribution entry point.
|
|
24
|
-
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
25
|
-
|
|
26
|
-
## Canonical repository docs
|
|
27
|
-
|
|
28
|
-
- `README.md`
|
|
29
|
-
- `docs/README.md`
|
|
30
|
-
- `docs/conformance/CURRENT_TARGET.md`
|
|
31
|
-
- `docs/conformance/CURRENT_STATE.md`
|
|
32
|
-
- `docs/conformance/NEXT_STEPS.md`
|
|
33
|
-
- `docs/governance/DOC_POINTERS.md`
|
|
34
|
-
- `docs/developer/PACKAGE_CATALOG.md`
|
|
35
|
-
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
36
|
-
|
|
37
|
-
## Package identity
|
|
38
|
-
|
|
39
|
-
- workspace path: `pkgs/core/tigrbl_orm`
|
|
40
|
-
- workspace class: core Python package
|
|
41
|
-
- implementation layout: `tigrbl_orm/`
|
|
42
|
-
|
|
43
|
-
Long-form repository documentation is governed from `docs/`.
|
|
44
|
-
|
tigrbl_orm-0.1.12.dev1/README.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# tigrbl_orm
|
|
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/core/tigrbl_orm`
|
|
20
|
-
- workspace class: core Python package
|
|
21
|
-
- implementation layout: `tigrbl_orm/`
|
|
22
|
-
|
|
23
|
-
Long-form repository documentation is governed from `docs/`.
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "tigrbl-orm"
|
|
3
|
-
version = "0.1.12.dev1"
|
|
4
|
-
description = "ORM tables and mixins for the Tigrbl framework."
|
|
5
|
-
license = "Apache-2.0"
|
|
6
|
-
readme = "README.md"
|
|
7
|
-
repository = "http://github.com/swarmauri/swarmauri-sdk"
|
|
8
|
-
requires-python = ">=3.10,<3.14"
|
|
9
|
-
classifiers = [
|
|
10
|
-
"Development Status :: 1 - Planning",
|
|
11
|
-
"Programming Language :: Python :: 3.10",
|
|
12
|
-
"Programming Language :: Python :: 3.11",
|
|
13
|
-
"Programming Language :: Python :: 3.12",
|
|
14
|
-
"Programming Language :: Python :: 3.13",
|
|
15
|
-
"Programming Language :: Python",
|
|
16
|
-
"Programming Language :: Python :: 3",
|
|
17
|
-
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
-
]
|
|
19
|
-
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
20
|
-
dependencies = [
|
|
21
|
-
"sqlalchemy>=2.0",
|
|
22
|
-
]
|
|
23
|
-
keywords = ["tigrbl", "orm", "sqlalchemy", "sdk", "standards"]
|
|
24
|
-
|
|
25
|
-
[build-system]
|
|
26
|
-
requires = ["poetry-core>=1.0.0"]
|
|
27
|
-
build-backend = "poetry.core.masonry.api"
|
|
28
|
-
|
|
29
|
-
[tool.poetry]
|
|
30
|
-
packages = [
|
|
31
|
-
{ include = "tigrbl_orm" },
|
|
32
|
-
]
|
|
33
|
-
|
|
34
|
-
[dependency-groups]
|
|
35
|
-
dev = [
|
|
36
|
-
"pytest>=8.0",
|
|
37
|
-
"ruff>=0.9",
|
|
38
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|