From 56da8c7fac5ae23e332271497c180a9e0c824721 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Sat, 30 Jul 2022 16:40:27 +0100 Subject: [PATCH] fix name extras_require --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d58c162..34dfced 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ LONG_DESC_TYPE = "text/markdown" INSTALL_REQUIRES = ["websocket-client"] # Development dependencies -EXTRAS_REQUIRES = { +EXTRAS_REQUIRE = { "dev": [ "pytest", "pytest-randomly", @@ -44,7 +44,7 @@ setup( author_email=AUTHOR_EMAIL, url=URL, install_requires=INSTALL_REQUIRES, - extras_require=EXTRAS_REQUIRES, + extras_require=EXTRAS_REQUIRE, python_requires=PYTHON_REQUIRES, packages=find_packages(), )