Files
s3-mirror/pyproject.toml
Aleksey Lobanov e9d0ca1e08
Some checks failed
Push to local registry / Build and push image (push) Failing after 15m29s
dev: Use uv
2026-04-19 13:56:12 +03:00

21 lines
371 B
TOML

[project]
name = "s3-mirror"
version = "0.1"
requires-python = ">=3.12"
dependencies = [
"minio==7.1.13",
"tenacity==8.2.1",
"tqdm==4.64.1",
]
[tool.black]
line-length = 80
target-version = ['py38']
include = '.pyi?$'
[tool.isort]
profile = "black"
py_version = "auto"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
known_local_folder = "src"