Metadata-Version: 2.1
Name: mykmeansproject
Version: 0.1
Summary: A package for running KMeans and GeoKMeans algorithms.
Home-page: https://github.com/yourusername/mykmeansproject
Author: Vasfi Tataroğlu
Author-email: your-email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# MyKMeansProject

This package provides Python bindings to run KMeans and GeoKMeans algorithms using a C++ backend.

## Installation

You can install this package using pip:

```bash
pip install mykmeansproject
```


Usage

```python
from mykmeansproject.kmeans import run_lloyd_kmeans, run_geokmeans

result = run_lloyd_kmeans(
    100,
    0.0001,
    12,
    17,
    [
        "path/to/Breastcancer.csv",
        "path/to/CreditRisk.csv",
        "path/to/census.csv",
        "path/to/birch.csv"
    ]
)

print(result)
```
