Metadata-Version: 2.4
Name: simple-calculator-2025
Version: 0.1.0
Summary: A simple calculator package
Author: Ganesan Selvaraj
Author-email: ganesanluna@yahoo.in
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: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# Simple Calculator

A simple Python calculator package.

## Installation
```bash
pip install simple-calculator-2025
```

## Usage
``` python
from calculator import Calculator

calc = Calculator()
print(calc.add(5, 3))  # Output: 8

```
