1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Sun, 12 Nov 2023 17:34:41 +0000
Subject: Only install main package.
---
pyproject.toml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
index 09121d7..55e7fdb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -46,6 +46,9 @@ include = [
"tree_queries/",
]
+[tool.hatch.build.targets.wheel]
+packages = ["tree_queries"]
+
[tool.hatch.version]
path = "tree_queries/__init__.py"
|