123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #-----------------------------------------------------------------------------
- # Copyright (c) 2005-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)
- #-----------------------------------------------------------------------------
- from PyInstaller.utils.hooks import collect_submodules, is_module_satisfies
- # pkg_resources keeps vendored modules in its _vendor subpackage, and does sys.meta_path based import magic to expose
- # them as pkg_resources.extern.*
- hiddenimports = collect_submodules('pkg_resources._vendor')
- # pkg_resources v45.0 dropped support for Python 2 and added this module printing a warning. We could save some bytes if
- # we would replace this by a fake module.
- hiddenimports.append('pkg_resources.py2_warn')
- excludedimports = ['__main__']
- # Some more hidden imports. See:
- # https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/15#issuecomment-663699288 `packaging` can either be
- # its own package, or embedded in `pkg_resources._vendor.packaging`, or both. Assume the worst and include both if
- # present.
- hiddenimports += collect_submodules('packaging')
- hiddenimports += ['pkg_resources.markers']
- # As of v60.7, setuptools vendored jaraco and has pkg_resources use it. Currently, the pkg_resources._vendor.jaraco
- # namespace package cannot be automatically scanned due to limited support for pure namespace packages in our hook
- # utilities.
- #
- # In setuptools 60.7.0, the vendored jaraco.text package included "Lorem Ipsum.txt" data file, which also has to be
- # collected. However, the presence of the data file (and the resulting directory hierarchy) confuses the importer's
- # redirection logic; instead of trying to work-around that, tell user to upgrade or downgrade their setuptools.
- if is_module_satisfies("setuptools == 60.7.0"):
- raise SystemExit(
- "ERROR: Setuptools 60.7.0 is incompatible with PyInstaller. "
- "Downgrade to an earlier version or upgrade to a later version."
- )
- # In setuptools 60.7.1, the "Lorem Ipsum.txt" data file was dropped from the vendored jaraco.text package, so we can
- # accommodate it with couple of hidden imports.
- elif is_module_satisfies("setuptools >= 60.7.1"):
- hiddenimports += [
- 'pkg_resources._vendor.jaraco.functools',
- 'pkg_resources._vendor.jaraco.context',
- 'pkg_resources._vendor.jaraco.text',
- ]
|