From b6542768ee4ca5446ef87c7a3014001f8028e6d0 Mon Sep 17 00:00:00 2001 From: shenchucheng Date: Tue, 25 Jul 2023 01:31:58 +0800 Subject: [PATCH] update extras_require --- setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 0b248c7b0..e65696901 100644 --- a/setup.py +++ b/setup.py @@ -43,12 +43,8 @@ setup( python_requires=">=3.9", install_requires=requirements, extras_require={ - "web_browser": [ - "playwright>=1.26", - "beautifulsoup4", - ], - "playwright": ["playwright"], - "selenium": ["selenium>4", "webdriver_manager<3.9"], + "playwright": ["playwright>=1.26", "beautifulsoup4"], + "selenium": ["selenium>4", "webdriver_manager<3.9", "beautifulsoup4"], }, cmdclass={ "install_mermaid": InstallMermaidCLI,