Re-apply fix for frozen builds

This commit is contained in:
Chris Wood 2019-10-04 12:46:07 -04:00
parent 7e20a14a2e
commit 9fc697d798
1 changed files with 15 additions and 5 deletions

View File

@ -23,11 +23,21 @@ from .util import (
verlib, verlib,
) )
_INSTALL_REQUIRES = list( if getattr(sys, 'frozen', None):
# "Frozen" python interpreters (i.e., standalone executables
# generated by PyInstaller and other, similar utilities) run
# independently of a traditional setuptools-based packaging
# environment, and so pkg_resources.get_distribution() cannot be
# used in such cases to gather a list of requirements at runtime
# (and because a frozen application is one that has already been
# "installed", an empty list suffices here).
_INSTALL_REQUIRES = []
else:
_INSTALL_REQUIRES = list(
str(req) str(req)
for req for req
in pkg_resources.get_distribution(__appname__).requires() in pkg_resources.get_distribution(__appname__).requires()
) )
class PackagingError(EnvironmentError): class PackagingError(EnvironmentError):
""" """