tigrbl_engine_pgsqli_wal 0.1.13.dev1__tar.gz → 0.1.14.dev1__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.
Files changed (17) hide show
  1. {tigrbl_engine_pgsqli_wal-0.1.13.dev1/src/tigrbl_engine_pgsqli_wal.egg-info → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/PKG-INFO +4 -3
  2. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/pyproject.toml +5 -3
  3. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1/src/tigrbl_engine_pgsqli_wal.egg-info}/PKG-INFO +4 -3
  4. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/LICENSE +0 -0
  5. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/README.md +0 -0
  6. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/setup.cfg +0 -0
  7. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/__init__.py +0 -0
  8. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/engines/postgres_wal_engine.py +0 -0
  9. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/engines/sqlite_wal_engine.py +0 -0
  10. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/sessions/postgres_wal_session.py +0 -0
  11. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/sessions/sqlite_wal_session.py +0 -0
  12. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/SOURCES.txt +0 -0
  13. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/dependency_links.txt +0 -0
  14. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/entry_points.txt +0 -0
  15. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/requires.txt +0 -0
  16. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/top_level.txt +0 -0
  17. {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/tests/test_smoke.py +0 -0
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_pgsqli_wal
3
- Version: 0.1.13.dev1
3
+ Version: 0.1.14.dev1
4
4
  Summary: PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points).
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
8
- Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pgsqli_wal
7
+ Project-URL: Homepage, https://github.com/swarmauri/tigrbl
8
+ Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal
9
+ Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
9
10
  Keywords: tigrbl,engine,plugin,postgres,sqlite,wal
10
11
  Classifier: Development Status :: 1 - Planning
11
12
  Classifier: Programming Language :: Python
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_pgsqli_wal"
7
- version = "0.1.13.dev1"
7
+ version = "0.1.14.dev1"
8
8
  description = "PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points)."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10,<3.14"
@@ -38,9 +38,11 @@ dependencies = [
38
38
  "psycopg[binary]>=3.1,<4.0", # PostgreSQL driver
39
39
  ]
40
40
 
41
+
41
42
  [project.urls]
42
- Homepage = "https://github.com/swarmauri/swarmauri-sdk"
43
- Repository = "https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pgsqli_wal"
43
+ Homepage = "https://github.com/swarmauri/tigrbl"
44
+ Repository = "https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal"
45
+ Issues = "https://github.com/swarmauri/tigrbl/issues"
44
46
 
45
47
  [project.entry-points."tigrbl.engine"]
46
48
  pgsqli_wal = "tigrbl_engine_pgsqli_wal:register"
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_pgsqli_wal
3
- Version: 0.1.13.dev1
3
+ Version: 0.1.14.dev1
4
4
  Summary: PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points).
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
8
- Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pgsqli_wal
7
+ Project-URL: Homepage, https://github.com/swarmauri/tigrbl
8
+ Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal
9
+ Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
9
10
  Keywords: tigrbl,engine,plugin,postgres,sqlite,wal
10
11
  Classifier: Development Status :: 1 - Planning
11
12
  Classifier: Programming Language :: Python