From 070dc80bf4246f27523142b89c7719f75f5fe4b9 Mon Sep 17 00:00:00 2001 From: Xavier Olive Date: Sun, 13 Aug 2023 10:57:20 +0200 Subject: [PATCH] include pyd files to wheel --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1a87572..be43180 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyModeS" -version = "2.16" +version = "2.17" description = "Python Mode-S and ADS-B Decoder" authors = ["Junzi Sun "] license = "GNU GPL v3" @@ -22,7 +22,8 @@ include = [ "*.pxd", "*.pyi", "py.typed", - { path = "pyModeS/**/*.so", format = "wheel" } + { path = "pyModeS/**/*.so", format = "wheel" }, + { path = "pyModeS/**/*.pyd", format = "wheel" } ] [tool.poetry.build]