1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Boyuan Yang <byang@debian.org>
Date: Sat, 11 Jan 2025 16:43:54 -0500
Subject: pyproject.toml: Exclude more files
Bug-Debian: https://bugs.debian.org/1092768
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 9db1424..589e307 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -68,7 +68,7 @@ changelog = "https://github.com/jazzband/django-pipeline/blob/master/HISTORY.rst
include-package-data = true
[tool.setuptools.packages.find]
-exclude = ["tests", "tests.*"]
+exclude = ["tests", "tests.*", "docs", "debian", "img"]
[tool.setuptools_scm]
local_scheme = "dirty-tag"
|