2023-02-08 19:42:08 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from PyInstaller.utils.hooks import collect_submodules
|
|
|
|
|
|
|
|
|
2023-02-09 06:26:12 +00:00
|
|
|
def pycryptodome_module():
|
2023-02-08 19:42:08 +00:00
|
|
|
try:
|
|
|
|
import Cryptodome # noqa: F401
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import Crypto # noqa: F401
|
|
|
|
print('WARNING: Using Crypto since Cryptodome is not available. '
|
|
|
|
'Install with: pip install pycryptodomex', file=sys.stderr)
|
|
|
|
return 'Crypto'
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
return 'Cryptodome'
|
|
|
|
|
|
|
|
|
2023-02-09 06:26:12 +00:00
|
|
|
def get_hidden_imports():
|
2023-07-15 11:09:45 +00:00
|
|
|
yield from ('yt_dlp.compat._legacy', 'yt_dlp.compat._deprecated')
|
|
|
|
yield from ('yt_dlp.utils._legacy', 'yt_dlp.utils._deprecated')
|
2023-02-28 17:40:54 +00:00
|
|
|
yield pycryptodome_module()
|
2023-02-09 06:26:12 +00:00
|
|
|
yield from collect_submodules('websockets')
|
2023-02-08 19:42:08 +00:00
|
|
|
# These are auto-detected, but explicitly add them just in case
|
|
|
|
yield from ('mutagen', 'brotli', 'certifi')
|
|
|
|
|
|
|
|
|
2023-02-09 06:26:12 +00:00
|
|
|
hiddenimports = list(get_hidden_imports())
|
|
|
|
print(f'Adding imports: {hiddenimports}')
|
|
|
|
|
2023-02-08 19:42:08 +00:00
|
|
|
excludedimports = ['youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins', 'devscripts']
|