From 8cc8e58380435e948e22b05f9a306715cd16ad2c Mon Sep 17 00:00:00 2001 From: Adeel Akram Date: Tue, 20 Feb 2024 13:27:59 +0100 Subject: [PATCH] Setup: Renaming Package Sklearn to Scikit-learn --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0859fe3..7195da6 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# coding: utf-8 + import os from setuptools import setup, find_packages @@ -11,7 +14,7 @@ def read(fname): "scipy", "pandas", "matplotlib", - "sklearn", + "scikit-learn", "pyyaml>=5.1", "pytorch-lightning", "decorator", @@ -37,12 +40,12 @@ def read(fname): long_description_content_type="text/markdown", license="Apache License, Version 2.0", keywords=[ - "machine learning", + "Machine Learning", "MLOps", "Pytorch", "PytorchLightning", "Lightning", - "pipeline" + "Pipeline" ], url="https://github.com/murnanedaniel/train-track", )