From d1aba75fdb45ab829081f18944e104759627d83c Mon Sep 17 00:00:00 2001 From: Sandro Date: Thu, 27 Jun 2024 20:33:25 +0200 Subject: [PATCH] Exclude sources and tests from wheel Those shouldn't be required for the wheel, making it smaller. --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a9e2419..439c8df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,11 +21,12 @@ dynamic = ["version"] Source = "https://github.com/dask/crick" [tool.setuptools] -include-package-data = true +include-package-data = false zip-safe = false [tool.setuptools.packages.find] namespaces = false +exclude = ["crick.tests*"] [tool.versioneer] VCS = "git" @@ -33,4 +34,4 @@ style = "pep440" versionfile_source = "crick/_version.py" versionfile_build = "crick/_version.py" tag_prefix = "" -parentdir_prefix = "crick-" \ No newline at end of file +parentdir_prefix = "crick-"