From 8666ac765621e9afec4b32d2d3d047024c22130e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Tue, 25 Aug 2026 14:14:07 +0200 Subject: [PATCH 1/2] Update pyproject.toml --- pyproject.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f1af73d6..07e9e07a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -155,4 +155,13 @@ sktime = [ ] [tool.setuptools.packages.find] -exclude = ["tests", "tests.*"] +exclude = [ + "tests", + "tests.*", + "docs", + "docs.*", + "examples", + "examples.*", + "build_tools", + "build_tools.*", +] From acf03fc2f94e8f6aba0c4388cd6d32af3e0abf9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Tue, 25 Aug 2026 14:20:16 +0200 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 07e9e07a..f5ff80d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -144,24 +144,11 @@ exclude_dirs = ["*/tests/*", "*/testing/*"] zip-safe = true [tool.setuptools.package-data] -sktime = [ +skbase = [ "*.csv", "*.csv.gz", - "*.arff", - "*.arff.gz", "*.txt", - "*.ts", - "*.tsv", ] [tool.setuptools.packages.find] -exclude = [ - "tests", - "tests.*", - "docs", - "docs.*", - "examples", - "examples.*", - "build_tools", - "build_tools.*", -] +include = ["skbase", "skbase.*"]