Metadata-Version: 2.4
Name: veercal
Version: 0.1.0
Summary: A Simple Calculator Package.
Author: Veerendra Shukla
Author-email: veshukla@gmail.com
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

# Veercal - Simple Calculator Package

A simple Python calculator package that provides basic mathematical operations.

## Features

- Addition
- Subtraction
- Multiplication
- Division (with zero division protection)

## Installation

```bash
pip install veercal
```

## Usage

```python
from veercal.calculator import Calculator

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

## Author

Veerendra Shukla (veshukla@gmail.com)
