From 9ce4cc6b89ad6012bfbbc1eefe1e60f12e78f6bd Mon Sep 17 00:00:00 2001 From: puppycodes Date: Sun, 14 Jan 2024 17:46:17 -0800 Subject: [PATCH] fix scikit package name in cli setup.py --- cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/setup.py b/cli/setup.py index df35076..6aed9d2 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -36,7 +36,7 @@ "tabulate", "pycocotools", "cython", - "sklearn", + "scikit-learn", ], python_requires=">=3.6", entry_points={"console_scripts": ["pawls=pawls.__main__:pawls_cli"]},