postgres-minio-backup/pyproject.toml

31 lines
811 B
TOML
Raw Permalink Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "postgres-minio-backup"
version = "0.1.0"
authors = [
{ name="Kumi Mitterer", email="postgres-minio-backup@kumi.email" },
]
description = "Simple Python script to backup a PostgreSQL database to MinIO"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
]
dependencies = [
"psycopg2-binary",
"boto3",
"pyyaml",
]
[project.scripts]
postgres-minio-backup = "postgres_minio_backup:main"
[project.urls]
"Homepage" = "https://git.private.coffee/kumi/postgres-minio-backup"
"Bug Tracker" = "https://git.private.coffee/kumi/postgres-minio-backup/issues"