From 2a99ed99782eb712e41c61a1000b920402a90a3f Mon Sep 17 00:00:00 2001 From: Fanwang Meng Date: Fri, 1 Nov 2024 22:56:49 -0400 Subject: [PATCH] Update the package directories in pyproject.toml --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4550ca7..560a627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,8 +88,11 @@ zip-safe = true # Python modules and packages that are included in the # distribution package (and therefore become importable) [tool.setuptools.packages.find] -exclude = ["*/*/tests", "tests_*", "examples", "notebooks"] -where = ["bfit", "bfit.test"] +exclude = ["*/*/test", "test_*", "examples", "notebooks", "docs"] +# list of folders that contain the packages (["."] by default) +where = ["."] +# package names should match these glob patterns (["*"] by default) +include = ["bfit"] # PDM example #[tool.pdm.scripts]