From 396d53b130fbcec7be44c4a560c04e510bece5e1 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 4 Dec 2024 14:10:44 +0200 Subject: [PATCH] Add doit configuration options --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c0e620a..9945c35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,6 +67,13 @@ skip_gitignore = true # This is necessary due to https://github.com/PyCQA/isort/issues/1835 follow_links = false +[tool.doit] +verbosity = 3 + +[tool.doit.tasks.build_image] +# DO NOT change this to 'true' for release artifacts. +use_cache = false + [build-system] requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api"