add package: pyproject + src (layer-1 verbs + raw layer-2, fail-loud, plain-dict rows)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-06-30 05:48:00 -04:00
parent cc3d6bb585
commit f12295ce6a
3 changed files with 394 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "psql"
version = "0.1.0"
description = "async postgres wrapper over asyncpg: two-layer API (friendly verbs + raw escape hatch), fail-loud, config-free"
requires-python = ">=3.10"
dependencies = [
"asyncpg>=0.29",
]
[tool.hatch.build.targets.wheel]
packages = ["src/psql"]