Metadata-Version: 2.4
Name: moderngraph
Version: 0.2.3
Summary: Add your description here
Author-email: Mostafa Sobhy <Mostafa.Sobhy@outlook.de>
Requires-Python: >=3.12
Requires-Dist: matplotlib>=3.10.9
Requires-Dist: pandas>=3.0.2
Requires-Dist: polars>=1.40.1
Requires-Dist: pyarrow>=24.0.0
Requires-Dist: seaborn>=0.13.2
Description-Content-Type: text/markdown

# moderngraph

**moderngraph** is a modern, lightweight Python plotting library aiming to simplify the creation of beautiful and highly customizable data visualizations (heatmaps, bar plots, etc.) using seaborn, matplotlib, and pandas.

## Installation

```bash
pip install moderngraph
```

## Usage

```python
import pandas as pd
from moderngraph.heatmaps.modern_heatmap import ModernHeatmap

# Create some data
data = pd.DataFrame({"A": [1, 2], "B": [3, 4]})

# Plot a beautiful heatmap
heatmap = ModernHeatmap(data)
heatmap.plot()
```