From b613b83bebd1d34e572f69a25be8b6d51034d362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 16 Oct 2024 15:38:33 +0200 Subject: [PATCH] Fix custom package metadata --- custom/pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/custom/pyproject.toml b/custom/pyproject.toml index a99c73517..4e6ae167f 100644 --- a/custom/pyproject.toml +++ b/custom/pyproject.toml @@ -1,8 +1,7 @@ [tool.poetry] -package-mode = false -name = 'demo-geomapfish-custom' +name = 'custom' version = '0.0.0' -description = 'Not used' +description = 'Custom package for GeoMapFish demo' authors = [] [tool.poetry.scripts] @@ -52,3 +51,7 @@ prospector-profile-utils = "1.9.1" prospector-profile-duplicated = "1.6.0" types-requests = "2.32.0.20240914" types-oauthlib = "3.2.0.20240806" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"