feat: add YAML parsing and backup detection

This commit is contained in:
Eddie Nielsen 2026-03-22 12:04:11 +00:00
parent cf630318db
commit 21906ff37e
9 changed files with 249 additions and 45 deletions

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "dockervault"
version = "0.1.0"
version = "0.2.0"
description = "CLI backup discovery tool for Docker environments"
readme = "README.md"
requires-python = ">=3.10"
@ -16,11 +16,16 @@ keywords = ["docker", "backup", "cli", "borg", "inventory"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"PyYAML>=6.0",
]
[project.scripts]
dockervault = "dockervault.cli:main"