Enhance DockerComposeManager with detailed service, volume, and network configurations using Pydantic models

This commit is contained in:
2025-06-18 04:41:32 +02:00
parent f0ee0bcac6
commit 2e000017e4
2 changed files with 99 additions and 39 deletions

View File

@ -4,7 +4,12 @@ version = "0.1.0"
description = "A simple Python package for managing Docker Compose files"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["pytest>=8.4.0", "pyyaml>=6.0.2"]
dependencies = [
"pydantic>=2.11.7",
"pytest>=8.4.0",
"pyyaml>=6.0.2",
"ruff>=0.12.0",
]
[build-system]
requires = ["hatchling"]