27 lines
591 B
TOML
Executable File
27 lines
591 B
TOML
Executable File
[project]
|
|
name = "docker_compose"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [{ name = "Christian Camper", email = "ccamper7@gmail.com" }]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"basedpyright>=1.37.1",
|
|
"loguru>=0.7.3",
|
|
"pydantic>=2.12.5",
|
|
"pyyaml>=6.0.3",
|
|
"ruff==0.14.13",
|
|
"sqlalchemy>=2.0.45",
|
|
]
|
|
|
|
[project.scripts]
|
|
docker_compose = "docker_compose:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.17,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.basedpyright]
|
|
reportExplicitAny = "none"
|
|
reportImportCycles = "none"
|