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