Add ruamel as a dep

This commit is contained in:
Miguel Jacq 2025-11-26 15:29:19 +11:00
parent 838e3f0010
commit 9b3585ae89
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
2 changed files with 92 additions and 3 deletions

View file

@ -1,13 +1,13 @@
[tool.poetry]
name = "jinjaturtle"
version = "0.1.2"
version = "0.1.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", "devops"]
keywords = ["ansible", "jinja2", "config", "toml", "ini", "yaml", "json", "devops"]
homepage = "https://git.mig5.net/mig5/jinjaturtle"
repository = "https://git.mig5.net/mig5/jinjaturtle"
@ -16,6 +16,7 @@ repository = "https://git.mig5.net/mig5/jinjaturtle"
python = "^3.10"
PyYAML = "^6.0"
tomli = { version = "^2.0.0", python = "<3.11" }
ruamel-yaml = "^0.18.16"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"