From a4bca829095641239811be72337eb6ed66862dc5 Mon Sep 17 00:00:00 2001 From: pc Date: Wed, 8 Oct 2025 18:17:54 +0200 Subject: [PATCH] Use `pdoc` for documentation `pyproject.toml` files support development dependencies via a `dev` group under `[dependency-groups]`, but currently the testing functionality for `mocket` itself is defined as the optional dependecy `test` under in the section `[project.optional-dependencies]`, so it would be best to configure documentation likewise and leave the the possibility to refactor both for the future. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a921e22..3d6ae34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,6 +70,9 @@ speedups = [ pook = [ "pook>=0.2.1", ] +doc = [ + "pdoc>=14.7.0", +] [tool.hatch.version] path = "mocket/__init__.py"