Metadata-Version: 2.4
Name: ipscalc
Version: 0.1.0
Summary: Library sederhana untuk menghitung IPS mahasiswa
Author: VallReey
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ipscalc

test library Python sederhana untuk menghitung IPS mahasiswa

## tutor install
pip install ipscalc


## Contoh Penggunaan
```python
from ipscalc import hitung_ips

data = [
    (3, "A"),
    (2, "B+"),
    (3, "B"),
]

print(hitung_ips(data))
