22 lines
458 B
TOML
22 lines
458 B
TOML
[tool.poetry]
|
|
name = "dbtests"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Correl Roush <correlr@aweber.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
tornado = "^6.4.1"
|
|
psycopg = {extras = ["pool"], version = "^3.2.3"}
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
testcontainers = "^4.8.1"
|
|
black = "^24.10.0"
|
|
pytest = "^8.3.3"
|
|
pytest-cov = "^5.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|