Metadata-Version: 2.4
Name: stemviz
Version: 0.1.0
Summary: Exam-focused Physics, Chemistry, and Maths diagram library
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: numpy


# stemviz

stemviz is a Python library to draw NEET / JEE / Board exam diagrams easily.

## Installation
```bash
pip install stemviz
```

## Usage
```python
import stemviz.physics as phys
import stemviz.maths as math
import stemviz.chemistry as chem

phys.draw_spring_system()
math.plot_equation("x**2")
chem.draw_benzene()
```
