From 4c811cd06142ca5c01f64adb78d954cd34f11fca Mon Sep 17 00:00:00 2001 From: Wolfgang Maier Date: Tue, 21 Jan 2025 17:56:45 +0100 Subject: [PATCH] Exclude test data from maturin-generated artifacts --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b45ecb2153..a5a0a925ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,7 @@ build-backend = "maturin" [tool.maturin] python-source = "pydeeptools" +exclude = ["pydeeptools/deeptools/test/**/*"] module-name = "deeptools.hp" bindings = "pyo3" @@ -86,4 +87,4 @@ plotProfile = "deeptools.plotProfile:main" bamCoverage2 = "deeptools.bamCoverage2:main" bamCompare2 = "deeptools.bamCompare2:main" computeMatrix2 = "deeptools.computeMatrix2:main" -alignmentSieve2 = "deeptools.alignmentSieve2:main" \ No newline at end of file +alignmentSieve2 = "deeptools.alignmentSieve2:main"