From 37f4f7580bba4d6c7d1e7150deeb28d3ef501d5f Mon Sep 17 00:00:00 2001 From: Simon Billinge Date: Thu, 12 Sep 2024 21:25:06 -0400 Subject: [PATCH] adding back exclude in setuptools.packages.find but leaving it as an empty list --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index aeb8190..d8b18c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ dirty_template = "{tag}" [tool.setuptools.packages.find] where = ["src"] # list of folders that contain the packages (["."] by default) include = ["*"] # package names should match these glob patterns (["*"] by default) +exclude = [] # exclude packages matching these glob patterns (empty by default) namespaces = false # to disable scanning PEP 420 namespaces (true by default) [tool.black]