From 23a76e8a56ab5027db3f224187675dcc076e1acd Mon Sep 17 00:00:00 2001 From: jak3z <48897123+jak3z@users.noreply.github.com> Date: Sat, 9 Oct 2021 11:43:09 -0300 Subject: [PATCH] setup.py: Fix typo in specifying optional dependencies (#352) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 37c07e0..ee64f8b 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( 'setuptools', 'wheel' ], - extras_reuqire=dict( + extras_require=dict( webview=['pywebview>=3.4'], webview_gtk=['pywebview>=3.4', 'PyGObject'] ),