diff options
author | coletdev <coletdjnz@protonmail.com> | 2022-03-09 05:44:05 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 08:44:05 -0800 |
commit | 4390d5ec12349e5b5bba30af6b4e7f08678af41a (patch) | |
tree | ba91d25c862a2891abe4ab21f568495bcf267d2d /pyinst.py | |
parent | 9e0e6adb2d5697e1ddedbfe3fbd23f498a8ff66c (diff) | |
download | hypervideo-pre-4390d5ec12349e5b5bba30af6b4e7f08678af41a.tar.lz hypervideo-pre-4390d5ec12349e5b5bba30af6b4e7f08678af41a.tar.xz hypervideo-pre-4390d5ec12349e5b5bba30af6b4e7f08678af41a.zip |
Add brotli content-encoding support (#2433)
Authored by: coletdjnz
Diffstat (limited to 'pyinst.py')
-rw-r--r-- | pyinst.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ def version_to_list(version): def dependency_options(): - dependencies = [pycryptodome_module(), 'mutagen'] + collect_submodules('websockets') + dependencies = [pycryptodome_module(), 'mutagen', 'brotli'] + collect_submodules('websockets') excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc'] yield from (f'--hidden-import={module}' for module in dependencies) |