From 592af07c27cbf98a0b99b3d5526393deae730936 Mon Sep 17 00:00:00 2001 From: vorfol <39548292+vorfol@users.noreply.github.com> Date: Tue, 20 Oct 2020 13:29:56 +0500 Subject: [PATCH] Update setup.py The brotlipy is just a wrapper and has not been updated for years. Also, I have a question: do MarkupSafe, itsdangerous, gevent really need? --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index afbef584..45d9fb58 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ packages=find_packages(), include_package_data = True, # include files listed in MANIFEST.in install_requires=[ - 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy', + 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotli', 'raven[flask]', 'werkzeug>=0.14.1', 'gevent', 'flasgger' ], )