From 719254cf0a48e1fc4bd541edba239570778bcfea Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Wed, 28 Aug 2024 21:04:43 +0200 Subject: [PATCH] fix: fixed build process and excluded docs and tests from tarballs and wheels --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 81a20a1b..c39c40cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,11 @@ bec-designer = "bec_widgets.utils.bec_designer:main" [tool.hatch.build.targets.wheel] include = ["*"] +exclude = ["docs/**", "tests/**"] + +[tool.hatch.build.targets.sdist] +include = ["*"] +exclude = ["docs/**", "tests/**"] [tool.black] line-length = 100