jinjaturtle/pyproject.toml
Miguel Jacq be1f9940a5
Some checks failed
CI / test (push) Successful in 1m20s
CI / test (debian, docker.io/library/debian:13, python3) (push) Successful in 1m20s
Lint / test (push) Failing after 40s
More hardening measures
2026-06-24 16:17:41 +10:00

40 lines
1 KiB
TOML

[project]
name = "jinjaturtle"
version = "0.5.7"
description = "Convert config files into Ansible defaults and Jinja2 templates."
authors = [
{ name = "Miguel Jacq", email = "mig@mig5.net" },
]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.10,<4.0"
keywords = ["ansible", "jinja2", "config", "toml", "ini", "yaml", "json", "devops"]
dependencies = [
"PyYAML (>=6.0,<7.0)",
"defusedxml (>=0.7.1,<0.8.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"tomli (>=2.0.0,<3.0.0) ; python_version < '3.11'",
]
[project.urls]
homepage = "https://git.mig5.net/mig5/jinjaturtle"
repository = "https://git.mig5.net/mig5/jinjaturtle"
[project.scripts]
jinjaturtle = "jinjaturtle.cli:main"
[tool.poetry]
packages = [{ include = "jinjaturtle", from = "src" }]
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pytest-cov = "^5"
pyproject-appimage = "^4.2"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyproject-appimage]
script = "jinjaturtle"
output = "JinjaTurtle.AppImage"