From 718a095ee8623ecac6bd256d836b3dc456e02341 Mon Sep 17 00:00:00 2001 From: Chris Bartak Date: Thu, 2 Apr 2020 14:20:17 -0500 Subject: [PATCH] BLD: recursive inclusion of DLLs in package data --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 461ef005c3df3..562273abb3e18 100755 --- a/setup.py +++ b/setup.py @@ -757,7 +757,7 @@ def setup_package(): maintainer=AUTHOR, version=versioneer.get_version(), packages=find_packages(include=["pandas", "pandas.*"]), - package_data={"": ["templates/*", "_libs/*.dll"]}, + package_data={"": ["templates/*", "_libs/**/*.dll"]}, ext_modules=maybe_cythonize(extensions, compiler_directives=directives), maintainer_email=EMAIL, description=DESCRIPTION,