DocktorAnalyzer/pyproject.toml
2025-05-15 11:00:49 +02:00

34 lines
563 B
TOML

[project]
name = "DocktorAnalyzer"
version = "0.1.0"
description = "Small Library to parse DOCKERFILEs and docker-compose.yaml files"
authors = [
{name = "CnF_Gris"},
]
dependencies = []
requires-python = ">=3.12"
readme = "README.md"
license = {text = "AGPL-3.0-or-later"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[dependency-groups]
dev = [
"nox-pdm>=0.0.2",
"pytest>=8.3.5",
"nox>=2025.5.1",
"twine>=6.1.0",
]
test = [
"pytest>=8.3.5",
]
lint = [
"flake8>=7.2.0",
]