We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fac23be commit 735609aCopy full SHA for 735609a
1 file changed
pyproject.toml
@@ -53,8 +53,12 @@ dev = [
53
"mypy",
54
]
55
56
-[tool.setuptools]
57
-py-modules = ["fmd_api"]
+# --- IMPORTANT CHANGE ---
+# Use setuptools.find to include the package directory (fmd_api/) in built distributions.
58
+# Do NOT use py-modules = ["fmd_api"] which causes packaging a single fmd_api.py module.
59
+[tool.setuptools.packages.find]
60
+where = ["."]
61
+exclude = ["tests*", "debugging*"]
62
63
[tool.black]
64
line-length = 120
0 commit comments