Metadata-Version: 2.4
Name: puspa-the-calculator
Version: 1.0.3
Summary: A fully functional calculator by Puspa with history tracking.
Author: Puspa
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# Puspa's Calculator

A fully functional modular calculator package with history tracking.

## Installation
```bash
pip install puspa-the-calculator
```

```python 
from puspa_the_calculator import Calculator

calc = Calculator()
print("Addition (15 + 25):", calc.add(15, 25))
print("Subtraction (100 - 45):", calc.subtract(100, 45))
```
