tigrbl_engine_postgres 0.1.12.dev1__tar.gz → 0.4.0.dev2__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_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/.gitignore +2 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/PKG-INFO +12 -2
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/README.md +6 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/pyproject.toml +7 -2
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/LICENSE +0 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/src/tigrbl_engine_postgres/__init__.py +0 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/src/tigrbl_engine_postgres/engine.py +0 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/src/tigrbl_engine_postgres/plugin.py +0 -0
- {tigrbl_engine_postgres-0.1.12.dev1 → tigrbl_engine_postgres-0.4.0.dev2}/src/tigrbl_engine_postgres/session.py +0 -0
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_postgres
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev2
|
|
4
4
|
Summary: PostgreSQL engine plugin for Tigrbl.
|
|
5
|
-
Project-URL:
|
|
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
|
|
6
10
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
7
11
|
License-Expression: Apache-2.0
|
|
8
12
|
License-File: LICENSE
|
|
@@ -51,3 +55,9 @@ This file is a package-local distribution entry point. Authoritative workspace g
|
|
|
51
55
|
- `docs/developer/PACKAGE_CATALOG.md`
|
|
52
56
|
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
53
57
|
|
|
58
|
+
## Package identity
|
|
59
|
+
|
|
60
|
+
- canonical repository: `https://github.com/tigrbl/tigrbl`
|
|
61
|
+
- organization: `https://github.com/tigrbl`
|
|
62
|
+
- social: `https://discord.gg/K4YTAPapjR`
|
|
63
|
+
- package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres`
|
|
@@ -31,3 +31,9 @@ This file is a package-local distribution entry point. Authoritative workspace g
|
|
|
31
31
|
- `docs/developer/PACKAGE_CATALOG.md`
|
|
32
32
|
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
33
33
|
|
|
34
|
+
## Package identity
|
|
35
|
+
|
|
36
|
+
- canonical repository: `https://github.com/tigrbl/tigrbl`
|
|
37
|
+
- organization: `https://github.com/tigrbl`
|
|
38
|
+
- social: `https://discord.gg/K4YTAPapjR`
|
|
39
|
+
- package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres`
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_postgres"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.4.0.dev2"
|
|
8
8
|
description = "PostgreSQL engine plugin for Tigrbl."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -24,8 +24,13 @@ dependencies = [
|
|
|
24
24
|
"tigrbl>=0.3.0.dev4",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
|
+
|
|
27
28
|
[project.urls]
|
|
28
|
-
|
|
29
|
+
Organization = "https://github.com/tigrbl"
|
|
30
|
+
Discord = "https://discord.gg/K4YTAPapjR"
|
|
31
|
+
Homepage = "https://github.com/tigrbl/tigrbl"
|
|
32
|
+
Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres"
|
|
33
|
+
Issues = "https://github.com/tigrbl/tigrbl/issues"
|
|
29
34
|
|
|
30
35
|
[project.entry-points."tigrbl.engine"]
|
|
31
36
|
postgres = "tigrbl_engine_postgres:register"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|