From 1979e92f0e6c414a02ff955e51d7f71f189548e4 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 16 Dec 2022 13:04:24 +0100 Subject: [PATCH] Also require all token plugin requirements Token plugins are technically optional, but if you are installing websockify via pip then all of these are available anyway. So let's make things simple for users. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e389a90..c9c98e5 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,11 @@ setup(name=name, packages=['websockify'], include_package_data=True, - install_requires=['numpy'], + install_requires=[ + 'numpy', 'requests', + 'jwcrypto', + 'redis', 'simplejson', + ], zip_safe=False, entry_points={ 'console_scripts': [