hook-passlib.py 744 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. # Handlers are imported by a lazy-load proxy, based on a
  13. # name-to-package mapping. Collect all handlers to ease packaging.
  14. # If you want to reduce the size of your application, used
  15. # `--exclude-module` to remove unused ones.
  16. hiddenimports = [
  17. "passlib.handlers",
  18. "passlib.handlers.digests",
  19. "configparser",
  20. ]