hook-OpenGL_accelerate.py 761 B

12345678910111213141516171819202122
  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. """
  13. OpenGL_accelerate contais modules written in cython. This module
  14. should speed up some functions from OpenGL module. The following
  15. hiddenimports are not resolved by PyInstaller because OpenGL_accelerate
  16. is compiled to native Python modules.
  17. """
  18. hiddenimports = [
  19. 'OpenGL_accelerate.wrapper',
  20. 'OpenGL_accelerate.formathandler',
  21. ]