Metadata-Version: 2.4
Name: simplemathsbysanyam
Version: 1.0.0
Summary: A lightweight Python package for basic mathematical operations.
Author: sanyam jain
Author-email: sanyamjaincoding@gmail.com
Keywords: math mathematics calculator add subtract multiply divide
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: requires-python
Dynamic: summary

# SimpleMath

A lightweight Python package for performing basic mathematical operations.

## Features

- ➕ Add two numbers
- ➖ Subtract two numbers
- ✖️ Multiply two numbers
- ➗ Divide two numbers

## Requirements

- Python 3.8 or later

## Installation

Install from PyPI:

```bash
pip install simplemathsbysanyam
```

Or install development requirements:

```bash
pip install -r requirements.txt
```

## Usage

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

print(add(10, 5))
print(subtract(10, 5))
print(multiply(10, 5))
print(divide(10, 5))
```

### Output

```
15
5
50
2.0
```

## Functions

### add(a, b)
Returns the sum of two numbers.

### subtract(a, b)
Returns the difference of two numbers.

### multiply(a, b)
Returns the product of two numbers.

### divide(a, b)
Returns the quotient of two numbers.
Raises `ValueError` if the divisor is zero.

## Project Structure

```
simplemath/
│
├── simplemath/
│   ├── __init__.py
│   └── main.py
│
├── README.md
├── LICENSE
├── requirements.txt
├── setup.py
└── pyproject.toml
```

## License

MIT License

## Author

Sanyam jain
