You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-pooch/SOURCES/421.patch

26 lines
834 B

From 278b19832208cf03cabb2f529600fb53444a78ec Mon Sep 17 00:00:00 2001
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Fri, 7 Jun 2024 08:45:40 +0200
Subject: [PATCH] Install package data
---
pyproject.toml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
index 3daa87e8..1bfb3adb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -48,6 +48,11 @@ xxhash = ["xxhash>=1.4.3"]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
+[tool.setuptools.package-data]
+"pooch.tests.data" = ["*.txt", "*.zip", "*.gz", "*.xz", "*.bz2"]
+"pooch.tests.data.store" = ["*.txt"]
+"pooch.tests.data.store.subdir" = ["*.txt"]
+
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"