From b5a711202cef9d75819b712be55cf005d73b33b6 Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Tue, 10 Dec 2024 16:36:41 -0800 Subject: [PATCH] fix: Force poetry to include executable in wheel --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ef55b3c..0394282 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,11 @@ authors = ["Leni Aniva "] license = "GPL-3" readme = "README.md" +include = [ + { path = "pantograph/pantograph-repl", format = ["sdist", "wheel"] }, + { path = "pantograph/lean-toolchain", format = ["sdist", "wheel"] }, +] + [tool.poetry.dependencies] pexpect = "^4.9.0" python = "^3.10"