Metadata-Version: 2.4
Name: tuneviz-jagriti
Version: 0.1.0
Summary: Simple music-data visualization built on matplotlib.
Author: Jagriti
License: MIT
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: matplotlib
Requires-Dist: pandas
Description-Content-Type: text/markdown

# tuneviz

Simple music-data visualization built on [matplotlib](https://matplotlib.org/).
Two plain functions, one clean sage-green aesthetic.

## Install

```bash
pip install tuneviz-jagriti
```

## Usage

```python
import pandas as pd
import tuneviz as viz

df = pd.DataFrame({
    "tempo": [90, 120, 140, 100, 128],
    "energy": [0.4, 0.7, 0.9, 0.5, 0.8],
})

# Scatter plot of two columns
viz.scatter(df, "tempo", "energy")

# Line plot of two columns
viz.lines(df, "tempo", "energy")
```

Each function reads two columns from a pandas DataFrame, styles the plot, labels
the axes, adds a title, and shows it.

## License

MIT
