[docs,build] Change all pycryptodome references to pycryptodomex

This commit is contained in:
pukkandan 2021-10-06 06:34:10 +05:30
parent 8472674399
commit 49e7e9c3ce
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
6 changed files with 23 additions and 13 deletions

View file

@ -3,7 +3,6 @@
from __future__ import unicode_literals
import sys
# import os
import platform
from PyInstaller.utils.hooks import collect_submodules
@ -29,10 +28,6 @@ print(f'Building {arch}bit version with options {opts}')
FILE_DESCRIPTION = 'yt-dlp%s' % (' (32 Bit)' if _x86 else '')
# root_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
# print('Changing working directory to %s' % root_dir)
# os.chdir(root_dir)
exec(compile(open('yt_dlp/version.py').read(), 'yt_dlp/version.py', 'exec'))
VERSION = locals()['__version__']
@ -76,7 +71,22 @@ VERSION_FILE = VSVersionInfo(
]
)
dependancies = ['Cryptodome', 'mutagen'] + collect_submodules('websockets')
def pycryptodome_module():
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'
dependancies = [pycryptodome_module(), 'mutagen'] + collect_submodules('websockets')
excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc']
PyInstaller.__main__.run([