[tool.poetry]
name = "glacier-upload"
version = "2.1.1"
description = "A helper tool to upload and manage archives in AWS Glacier Vaults"
authors = ["Trapsilo Bumi <tbumi@thpd.io>"]
license = "GPL-3.0+"
readme = "README.md"
packages = [{include = "glacier_upload", from = "src"}]
repository = "https://github.com/tbumi/glacier-upload"
keywords = ["AWS", "glacier", "upload", "multipart"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "Intended Audience :: End Users/Desktop",
    "Intended Audience :: Information Technology",
    "Intended Audience :: System Administrators",
    "Operating System :: OS Independent",
    "Topic :: System :: Archiving",
    "Topic :: System :: Archiving :: Backup",
    "Topic :: System :: Archiving :: Compression",
]

[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.34.113"
click = "^8.1.7"
tqdm = "^4.66.4"

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
flake8 = "^7.0.0"
mypy = "^1.10.0"
isort = "^5.13.2"
pre-commit = "^3.7.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
glacier = "glacier_upload.cli:glacier_cli"

[tool.isort]
profile = "black"