Skip to content

Commit 520b3a9

Browse files
committed
fix(build): update setuptools package discovery config
Switch to setuptools 'packages.find' for package discovery in pyproject.toml. This ensures all cardano_clusterlib* packages are included correctly.
1 parent 038ce3b commit 520b3a9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ homepage = "https://github.com/input-output-hk/cardano-clusterlib-py"
3232
documentation = "https://cardano-clusterlib-py.readthedocs.io/"
3333
repository = "https://github.com/input-output-hk/cardano-clusterlib-py"
3434

35-
[tool.setuptools]
36-
package-dir = {"" = "cardano_clusterlib"}
35+
[tool.setuptools.packages.find]
36+
where = ["."]
37+
include = ["cardano_clusterlib*"]
3738

3839
[tool.setuptools_scm]
3940

0 commit comments

Comments
 (0)