From bf18b100ff378195022aad373c54b649956b8e9b Mon Sep 17 00:00:00 2001 From: Lamont Huffman <61401544+411380764@users.noreply.github.com> Date: Mon, 20 Oct 2025 17:35:54 +0800 Subject: [PATCH] [Hotfix] Add [tool.setuptools.packages.find] in pyproject.toml (#2) Co-authored-by: liufeihong --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8f38451..f2dbdff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,11 @@ dev = [ "matplotlib", ] +[tool.setuptools.packages.find] +where = ["."] +include = ["*"] +exclude = ["tests*", "dist*"] + [build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" \ No newline at end of file