Metadata-Version: 2.4
Name: ptoe
Version: 0.3.0
Summary: Render matplotlib charts with eCharts
Author-email: Hamin <your@email.com>
Project-URL: Homepage, https://github.com/yourname/hamin-echarts
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: matplotlib

# ptoe

Convert matplotlib plots to interactive eCharts visualizations.

## Supported Charts
- Bar
- Stacked Bar
- Line
- Step Line
- Scatter
- Area (fill_between)

## Usage
```python
import matplotlib.pyplot as plt
from ptoe import Ptoe

ptoe = Ptoe(plt)

plt.bar(["A","B"], [10,20], label="A")
plt.bar(["A","B"], [5,8], bottom=[10,20], label="B")
plt.legend()

ptoe.show()

Notes

One figure must contain only one chart type

Subplots are not supported


---

## 3️⃣ 빌드 도구 설치 (한 번만)
```bash
pip install build twine
