Metadata-Version: 2.4
Name: regression_model_moha
Version: 1.0.0
Summary: Simple Linear Regression implemented from scratch
Author: Moha
Author-email: moha@example.com
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Regression Model (Challenge 5)

This package implements a Simple Linear Regression model from scratch in Python.

## Installation

### Offline
```
pip install dist/regression_model_moha-1.0.0-py3-none-any.whl
```

### Online
```
pip install regression-model-moha
```

## Usage
```python
from regression_model import SimpleLinearRegression

X = [1, 2, 3, 4, 5]
y = [2, 4, 5, 4, 5]
model = SimpleLinearRegression()
model.fit(X, y)
print(model.predict([6]))
```
