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 /setup.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 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ LONG_DESCRIPTION = '\n\n'.join(( '**PS**: Some links in this document will not work since this is a copy of the README.md from Github', open('README.md', 'r', encoding='utf-8').read())) -REQUIREMENTS = ['mutagen', 'pycryptodomex', 'websockets'] +REQUIREMENTS = open('requirements.txt').read().splitlines() if sys.argv[1:2] == ['py2exe']: |