123456789101112131415161718192021222324252627282930313233 |
- # -----------------------------------------------------------------------------
- # Copyright (c) 2013-2021, PyInstaller Development Team.
- #
- # Distributed under the terms of the GNU General Public License (version 2
- # or later) with exception for distributing the bootloader.
- #
- # The full license is in the file COPYING.txt, distributed with this software.
- #
- # SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
- # -----------------------------------------------------------------------------
- import os
- import glob
- from PyInstaller.utils.hooks import get_module_file_attribute
- from PyInstaller.compat import is_win
- binaries = []
- # package the DLL bundle that official scipy wheels for Windows ship
- # The DLL bundle will either be in extra-dll on windows proper
- # and in .libs if installed on a virtualenv created from MinGW (Git-Bash
- # for example)
- if is_win:
- extra_dll_locations = ['extra-dll', '.libs']
- for location in extra_dll_locations:
- dll_glob = os.path.join(os.path.dirname(
- get_module_file_attribute('scipy')), location, "*.dll")
- if glob.glob(dll_glob):
- binaries.append((dll_glob, "."))
- # collect library-wide utility extension modules
- hiddenimports = ['scipy._lib.%s' % m for m in [
- 'messagestream', "_ccallback_c", "_fpumode"]]
|