include pyd files to wheel

This commit is contained in:
Xavier Olive 2023-08-13 10:57:20 +02:00
parent 8d9a8df9d9
commit 070dc80bf4

View File

@ -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 <j.sun-1@tudelft.nl>"]
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]