From da297308b603caee01044d291f99b6b8f194c494 Mon Sep 17 00:00:00 2001 From: Mario Haustein Date: Sun, 11 May 2025 17:34:48 +0200 Subject: [PATCH] Don't install `docs/` directory into site packages directory (#2973) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7cc8f8da4..6219c6caf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -125,10 +125,10 @@ builtins-ignorelist = [ ] [tool.hatch.build.targets.sdist] -include = ["pwndbg"] +include = ["/pwndbg"] [tool.hatch.build.targets.wheel] -include = ["pwndbg"] +include = ["/pwndbg"] [build-system] requires = ["hatchling"]