Metadata-Version: 2.4
Name: calculator-package-nazmul
Version: 0.0.1
Summary: A simple calculator package
Home-page: https://github.com/Nazmul0005/calculator-package.git
Author: Nazmul Islam
Author-email: nazmulislam45213@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
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Calculator Package

A simple calculator package for basic arithmetic operations.

## Installation

```bash
pip install calculator-package-nazmul
```

## Usage

```python
from calculator_package import add, subtract, multiply, divide

print(add(10, 5))        # Output: 15
print(subtract(10, 5))   # Output: 5
print(multiply(10, 5))   # Output: 50
print(divide(10, 5))     # Output: 2.0
```

## Features

- Addition
- Subtraction
- Multiplication
- Division with zero check
