Skip to content

Commit aeeb99f

Browse files
authored
Fix package discovery in pyproject.toml (#422)
Currently the published wheel includes the following packages: * continuous_integration * dask_image * dask_image-2025.11.0.dist.info * docs This commit fixes the setuptools configuration for automatic package discovery to install only "dask_image" and sub-packages.
1 parent bbd8f5f commit aeeb99f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ license-files = [
6565
]
6666

6767
[tool.setuptools.packages.find]
68-
exclude = [
69-
"tests*",
68+
include = [
69+
"dask_image*",
7070
]
7171

7272
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)