29 lines
509 B
TOML
29 lines
509 B
TOML
[tool.poetry]
|
|
name = "docker-postgres-backup"
|
|
version = "0.3.0"
|
|
description = ""
|
|
authors = ["Eugene Morozov <e@morozov.ee>"]
|
|
packages = [
|
|
{ include = "README.md" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
schedule = "^1.1.0"
|
|
psycopg2-binary = "^2.9.3"
|
|
boto3 = "^1.20.51"
|
|
pytz = "^2022.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pre-commit = "^2.17.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 90
|
|
|
|
[tool.isort]
|
|
profile = "black"
|