This commit is contained in:
tanuki tanuki
2025-11-10 10:35:26 -05:00
parent 56a51c9eeb
commit cc2cbdc025
8 changed files with 521 additions and 0 deletions

15
pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[project]
name = "postgresmanager"
version = "0.1.0"
description = "Wrapper library around Psycopg to simplify Postgres DB interaction"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"iniconfig==2.3.0",
"packaging==25.0",
"pluggy==1.6.0",
"psycopg==3.2.11",
"psycopg-binary==3.2.11",
"pygments==2.19.2",
"pytest==8.4.2",
]