v0.1: The first version of backup script

This commit is contained in:
Eugene Morozov
2022-02-14 08:07:43 +00:00
parent 99f6445067
commit 8f006b16b6
9 changed files with 717 additions and 86 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[tool.poetry]
name = "docker-postgres-backup"
version = "0.1.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 = "^2021.3"
[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"