From 16cdbea09f8bb0ebf7f6f79f089851f7ccaa9069 Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Wed, 25 Sep 2024 12:39:57 +0200 Subject: [PATCH] fix(packaging): Correctly exclude the unwanted sub/modules - "test" installed "test/efuse_scripts/*py" - "docs" installed "docs/en/conf.py" - "flasher_stub" no longer exists --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a1d6b8334..155514dc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ "*" = ["esptool/targets/stub_flasher/1/*", "esptool/targets/stub_flasher/2/*"] [tool.setuptools.packages] - find = {exclude = ["ci", "flasher_stub", "test", "docs"]} + find = {exclude = ["ci", "test*", "docs*"]} [tool.setuptools.dynamic] version = {attr = "esptool.__init__.__version__"}