From ffd37783cab2e765ee2bdef79819179db5a24eeb Mon Sep 17 00:00:00 2001 From: Wolf2323 Date: Thu, 29 Jan 2026 21:45:06 +0100 Subject: [PATCH] migrate from setuptools to hatchling in pyproject.toml for build system configuration --- docs/pyproject.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/pyproject.toml b/docs/pyproject.toml index c01db4e..622f5f2 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,11 +1,10 @@ [build-system] -requires = ["setuptools>=68"] -build-backend = "setuptools.build_meta" +requires = ["hatchling"] +build-backend = "hatchling.build" [project] name = "betonquest-docs" version = "0.0.0" -requires-python = ">=3.9" dependencies = [ "mkdocs-material==9.7.1", @@ -16,8 +15,8 @@ dependencies = [ [project.optional-dependencies] imaging = [ - "mkdocs-material[imaging]==9.7.1", + "mkdocs-material[imaging]==9.7.1" ] -[tool.setuptools] -packages = [] +[tool.hatch.build.targets.wheel] +bypass-selection = true