syncstorage-rs/tools/postgres/pyproject.toml
Philip Jenvey 6363d68a11
fix: install all the pg tools dependencies (#2189)
the Dockerfile still uses python 3.11, causing potential dependency
skips w/ a higher requires-python

Closes STOR-524
2026-04-03 14:44:17 -07:00

40 lines
772 B
TOML

[project]
name = "postgres-tools"
version = "0.1.0"
description = "Scripts for syncstorage-rs on Postgres"
authors = [
{name = "Mozilla"}
]
license = "Mozilla Public License Version 2.0"
requires-python = ">=3.11"
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
sqlalchemy = "^1.4.46"
psycopg2-binary = "^2.9.11"
statsd = "^4.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
mypy = "^1.19.1"
pydocstyle = "^6.3.0"
ruff = "^0.15.6"
black = "^26.3.1"
bandit = "^1.9.4"
isort = "^8.0.1"
[tool.mypy]
python_version = "3.14"
ignore_missing_imports = true
explicit_package_bases = true
strict = true
[tool.pytest.ini_options]
pythonpath = ["."]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"