1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ole Streicher <ole@aip.de>
Date: Wed, 28 Jun 2023 10:52:06 +0200
Subject: Explicitly set the packages for setuptools
---
pyproject.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 6de7493..7626368 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -50,8 +50,9 @@ Homepage = "https://github.com/yt-project/ewah_bool_utils"
[tool.setuptools]
license-files = [
- "LICENSE",
+ "LICENSE", "ewah_bool_utils/cpp/LICENSE",
]
+packages = [ "ewah_bool_utils" ]
[dependency-groups]
test = [
|