From 77efeee2cafe61be839923d99ec1b7896d8c818e Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 6 Oct 2021 10:59:05 +0200 Subject: [PATCH] setup.py: Add pywebview as optional dependency --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38b315b..6578289 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,9 @@ setup( 'setuptools', 'wheel' ], + extras_reuqire=dict( + webview=['pywebview'], + ), url='https://github.com/derrod/legendary', description='Free and open-source replacement for the Epic Games Launcher application', long_description=long_description, @@ -54,5 +57,5 @@ setup( 'Intended Audience :: End Users/Desktop', 'Topic :: Games/Entertainment', 'Development Status :: 4 - Beta', - ], + ] )