hook-pyexcel.py 1.2 KB

1234567891011121314151617181920212223242526272829
  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. # This hook was tested with pyexcel 0.5.13:
  13. # https://github.com/pyexcel/pyexcel
  14. hiddenimports = [
  15. 'pyexcel.plugins.renderers.sqlalchemy', 'pyexcel.plugins.renderers.django',
  16. 'pyexcel.plugins.renderers.excel', 'pyexcel.plugins.renderers._texttable',
  17. 'pyexcel.plugins.parsers.excel', 'pyexcel.plugins.parsers.sqlalchemy',
  18. 'pyexcel.plugins.sources.http', 'pyexcel.plugins.sources.file_input',
  19. 'pyexcel.plugins.sources.memory_input',
  20. 'pyexcel.plugins.sources.file_output',
  21. 'pyexcel.plugins.sources.output_to_memory',
  22. 'pyexcel.plugins.sources.pydata.bookdict',
  23. 'pyexcel.plugins.sources.pydata.dictsource',
  24. 'pyexcel.plugins.sources.pydata.arraysource',
  25. 'pyexcel.plugins.sources.pydata.records', 'pyexcel.plugins.sources.django',
  26. 'pyexcel.plugins.sources.sqlalchemy', 'pyexcel.plugins.sources.querysets'
  27. ]