amfs-adapter-postgres 0.1.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.
@@ -0,0 +1,16 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ .venv/
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .pytest_cache/
9
+ .mypy_cache/
10
+ .ruff_cache/
11
+ node_modules/
12
+ .next/
13
+ !uv.lock
14
+ !pnpm-lock.yaml
15
+ .amfs/
16
+ test.py
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: amfs-adapter-postgres
3
+ Version: 0.1.0
4
+ Summary: AMFS Postgres adapter with back-propagation triggers
5
+ License-Expression: Apache-2.0
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: amfs-core
8
+ Requires-Dist: psycopg-pool>=3.1
9
+ Requires-Dist: psycopg[binary]<4,>=3.1
@@ -0,0 +1,18 @@
1
+ [project]
2
+ name = "amfs-adapter-postgres"
3
+ version = "0.1.0"
4
+ description = "AMFS Postgres adapter with back-propagation triggers"
5
+ requires-python = ">=3.11"
6
+ license = "Apache-2.0"
7
+ dependencies = [
8
+ "amfs-core",
9
+ "psycopg[binary]>=3.1,<4",
10
+ "psycopg-pool>=3.1",
11
+ ]
12
+
13
+ [build-system]
14
+ requires = ["hatchling"]
15
+ build-backend = "hatchling.build"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["src/amfs_postgres"]
@@ -0,0 +1,5 @@
1
+ """AMFS Postgres Adapter — psycopg3 with back-propagation triggers."""
2
+
3
+ from amfs_postgres.adapter import PostgresAdapter
4
+
5
+ __all__ = ["PostgresAdapter"]