hook-pywt.py 875 B

123456789101112131415161718192021
  1. # ------------------------------------------------------------------
  2. # Copyright (c) 2020 PyInstaller Development Team.
  3. #
  4. # This file is distributed under the terms of the GNU General Public
  5. # License (version 2.0 or later).
  6. #
  7. # The full license is available in LICENSE, distributed with
  8. # this software.
  9. #
  10. # SPDX-License-Identifier: GPL-2.0-or-later
  11. # ------------------------------------------------------------------
  12. # Hook for https://github.com/PyWavelets/pywt
  13. hiddenimports = ['pywt._extensions._cwt']
  14. # NOTE: There is another project `https://github.com/Knapstad/pywt installing
  15. # a packagre `pywt`, too. This name clash is not much of a problem, even if
  16. # this hook is picked up for the other package, since PyInstaller will simply
  17. # skip any module added by this hook but acutally missing. If the other project
  18. # requires a hook, too, simply add it to this file.