From 72ddb156f0ac0fe0910ea41360f32f75a13cc7e4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 13 Feb 2023 18:16:26 -0600 Subject: [PATCH] fix: missing c extensions with newer poetry (#194) --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7a5da87..a8db2e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,11 +14,14 @@ classifiers = [ "Operating System :: OS Independent", "Topic :: Software Development :: Libraries", ] -build = "build_ext.py" packages = [ { include = "dbus_fast", from = "src" }, ] +[tool.poetry.build] +generate-setup-file = true +script = "build_ext.py" + [tool.poetry.urls] "Bug Tracker" = "https://github.com/bluetooth-devices/dbus-fast/issues" "Changelog" = "https://github.com/bluetooth-devices/dbus-fast/blob/main/CHANGELOG.md"