1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@debian.org>
Date: Wed, 26 Jun 2024 17:20:50 +0200
Subject: install only the nabu* packages
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 00afaa5..4fe3bfb 100644
@@ -126,7 +126,7 @@ version = {attr = "nabu.version"}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
-# include = ["nabu*"] # package names should match these glob patterns (["*"] by default)
+include = ["nabu*"] # package names should match these glob patterns (["*"] by default)
exclude = ["sandbox","build*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)
|