40 lines
785 B
TOML
40 lines
785 B
TOML
[tool.poetry]
|
|
name = "kheops"
|
|
version = "0.1.0"
|
|
description = "Data trees for Ansible"
|
|
authors = ["Robin Cordier"]
|
|
license = "GNU"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
jsonschema = "^4.3.3"
|
|
jsonmerge = "^1.8.0"
|
|
anyconfig = "^0.12.0"
|
|
python-box = "^5.4.1"
|
|
prettytable = "^3.0.0"
|
|
dpath = "^2.0.5"
|
|
diskcache = "^5.4.0"
|
|
mergedeep = "^1.3.4"
|
|
typer = "^0.4.0"
|
|
Jinja2 = "^3.0.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
json-schema-for-humans = "^0.40"
|
|
pylint = "^2.12.2"
|
|
black = "^21.12b0"
|
|
mkdocs = "^1.2.3"
|
|
mkdocs-ivory = "^0.4.6"
|
|
Sphinx = "^4.4.0"
|
|
myst-parser = "^0.16.1"
|
|
bash_kernel = "^0.7.2"
|
|
jupyter = "^1.0.0"
|
|
pandoc = "^2.0.1"
|
|
pytest = "^6.2.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
kheops = "kheops.cli:app"
|