diff --git a/standalone/hooks/hook-jupyter_client.py b/standalone/hooks/hook-jupyter_client.py index 6ecd059447..1b8a3f8cfb 100644 --- a/standalone/hooks/hook-jupyter_client.py +++ b/standalone/hooks/hook-jupyter_client.py @@ -1,3 +1,7 @@ -from PyInstaller.utils.hooks import collect_submodules, collect_data_files +from PyInstaller.utils.hooks import (collect_submodules, + collect_data_files, + copy_metadata) +datas = collect_data_files('jupyter_client') +datas += copy_metadata('jupyter_client') hiddenimports = collect_submodules("jupyter_client")