Metadata-Version: 2.4
Name: piyush-math-calculator
Version: 0.1.0
Summary: A simple math utilities package for basic operations
Home-page: https://github.com/piyushborakhade/piyush-math-calculator
Author: Piyush Borakhade
Author-email: your.email@example.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
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

# Piyush Math Calculator

A simple Python package for basic mathematical operations.

## Installation

```bash
pip install piyush-math-calculator
```

## Usage

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

# Basic operations
result = add(5, 3)        # Returns 8
result = subtract(10, 4)  # Returns 6
result = multiply(6, 7)   # Returns 42
result = divide(15, 3)    # Returns 5.0
```

## Features

- Addition
- Subtraction  
- Multiplication
- Division (with zero division protection)
- Power operations
- Square root calculations

## Requirements

- Python 3.6+

## License

MIT License
