Metadata-Version: 2.4
Name: spenurnpy
Version: 0.1.0
Summary: A collection of data preprocessing, clustering, and machine learning educational tools.
Home-page: https://github.com/yourusername/nurnpy
Author: S P Ecialise Srinivasan
Author-email: youremail@example.com
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Requires-Dist: scipy
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# nurnpy

A Python educational library for data preprocessing, clustering, and classical ML algorithms (Apriori, DBSCAN, etc.).

## Installation

```bash
pip install nurnpy
```

## Example Usage

```python
from nurnpy import dbscan

data = [[1, 2], [2, 3], [8, 9]]
labels = dbscan(data, eps=2, min_pts=2)
print(labels)
```

## Author
Developed by **S P Ecialise Srinivasan**
