Metadata-Version: 2.4
Name: rootlearn
Version: 0.2.1
Summary: A simple Linear Regression implementation from scratch
Author: Pranjal Kumar
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: scikit-learn>=1.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# rootlearn

`rootlearn` is a lightweight machine learning library built from scratch in Python.  
It currently supports linear regression and core evaluation metrics like MSE and RÂ².  
Ideal for learning, experimentation, and educational purposes.

## Features

-- Linear Regression from scratch
-- Metrics: Mean Squared Error (MSE), RÂ² Score
-- Easy-to-use API (like `fit()`, `predict()`)
-- Designed for learning and minimal dependencies

## Installation

```bash
pip install rootlearn
