hedgedoc-expire/pyproject.toml
Julian Schacher b471bbd4d3 switch to another postgresql python library (from pgsql to psycopg)
Switch to a library which is more well-known.
I also thought the library was the problem for not being able to
template in a JSON path, but that is just a PostgreSQL problem it seems.
2024-12-02 19:49:05 +01:00

16 lines
368 B
TOML

[tool.poetry]
name = "hedgedoc-expire"
version = "0.1.0"
description = "Remove old Hedgedoc notes"
authors = ["Stefan Bethke <stb@lassitu.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
humanize = "^4.9.0"
psycopg = {extras = ["binary"], version = "^3.2.3"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"