aboutsummaryrefslogtreecommitdiffstats
path: root/pyinst.py
diff options
context:
space:
mode:
authorcoletdev <coletdjnz@protonmail.com>2022-03-09 05:44:05 +1300
committerGitHub <noreply@github.com>2022-03-08 08:44:05 -0800
commit4390d5ec12349e5b5bba30af6b4e7f08678af41a (patch)
treeba91d25c862a2891abe4ab21f568495bcf267d2d /pyinst.py
parent9e0e6adb2d5697e1ddedbfe3fbd23f498a8ff66c (diff)
downloadhypervideo-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyinst.py b/pyinst.py
index f135ec90d..ca115fd78 100644
--- a/pyinst.py
+++ b/pyinst.py
@@ -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)