Verified Commit b7bdd9c0 authored by Johan Bakker's avatar Johan Bakker
Browse files

add missing files

parent 7eaa3c85
Loading
Loading
Loading
Loading
Loading

poetry.lock

0 → 100644
+975 −0

File added.

Preview size limit exceeded, changes collapsed.

pyproject.toml

0 → 100644
+40 −0
Original line number Diff line number Diff line
[tool.poetry]
name = "e2j2"
version = "0.9.0"
description = "Cli utility to render jinja2 templates configuration files"
authors = ["Johan Bakker <johan.bakker@solvinity.com>"]
license = "MIT"
readme = "README.rst"
packages = [{include = "e2j2"}]

[tool.poetry.dependencies]
python = "<3.13,>=3.8"
jinja2 = "^3.1.4"
python-consul = "^1.1.0"
deepmerge = "^1.1.1"
jsonschema = "^4.22.0"
rfc3987 = "^1.3.8"
dnspython = "^2.6.1"
munch = "^4.0.0"
dpath = "^2.1.6"

[tool.poetry.scripts]
e2j2 = 'e2j2.cli:main'

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"


[tool.poetry.group.test.dependencies]
callee = "^0.3.1"
ruff = "^0.4.5"
requests-mock = "^1.12.1"
pytest = "^8.2.1"
mock = "^5.1.0"
pytest-cov = "^5.0.0"
coveralls = "^4.0.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"