From 7ff1cb418414adf94e4852d73b10a9537e2e1ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Thu, 11 Jul 2024 10:00:44 +0200 Subject: [PATCH] Add missing configuration in pyproject.toml Needed to make `poetry --version` work, used in the audit. --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c2691b0ab..5aec8ec84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,9 @@ [tool.black] line-length = 110 target-version = ['py38'] + +[tool.poetry] +name = "c2cwsgiutils" +version = "0.0.0" +description = "Common utilities for Camptocamp WSGI applications" +authors = ["Camptocamp "]