1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Edward Betts <edward@4angle.com>
Date: Thu, 3 Apr 2025 15:55:04 +0100
Subject: Modify tools.setuptools.packages.find
---
pyproject.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 46749e9..10ce124 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,7 +22,7 @@ dependencies = [
]
[tool.setuptools.packages.find]
-exclude = ["tests", "tests.*"]
+exclude = ["tests", "tests.*","build","debian"]
[project.optional-dependencies]
testing = [
@@ -62,4 +62,4 @@ ignore = [
"W503", "E203", "E501", "D202",
"D103", "D102", "D101", # TODO: remove these once docstrings are added
]
-per-file-ignores = ["tests/*:F811,F401,F403"]
\ No newline at end of file
+per-file-ignores = ["tests/*:F811,F401,F403"]
|