From 2a1a6987c90720cd10c281c3330527f312924403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= Date: Wed, 27 Jun 2018 17:25:14 +0200 Subject: [PATCH] Use scikit-learn in requirements.txt rather than sklearn. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 70f5689..54f43a1 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.core import setup requirements = [ - "sklearn", + "scikit-learn", "scipy", "numpy", "matplotlib" @@ -27,4 +27,4 @@ install_requires=requirements, zip_safe=False, keywords='semisup-learn', -) \ No newline at end of file +)