Skip to content

Commit 908d0b5

Browse files
committed
fix(packaging): Correctly exclude the unwanted sub/modules
- "test" - installed unwanted "test/efuse_scripts/*py" - "docs" - installed unwanted "docs/en/conf.py" - "ci" - added "*" to be future-proof - "flasher_stub" no longer exists
1 parent 5de78d3 commit 908d0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"*" = ["esptool/targets/stub_flasher/1/*", "esptool/targets/stub_flasher/2/*"]
7070

7171
[tool.setuptools.packages]
72-
find = {exclude = ["ci", "flasher_stub", "test", "docs"]}
72+
find = {exclude = ["ci*", "test*", "docs*"]}
7373

7474
[tool.setuptools.dynamic]
7575
version = {attr = "esptool.__init__.__version__"}

0 commit comments

Comments
 (0)