Metadata-Version: 2.4
Name: easy-to-maths
Version: 0.1.0
Summary: A simple Python package providing basic arithmetic operations.
Home-page: https://github.com/Arpitsoni89/maths-tools
Author: Arpit Soni
Author-email: Arpit Soni <harshit998ops@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Arpitsoni89/maths-tools
Project-URL: Issues, https://github.com/Arpitsoni89/maths-tools/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Maths Tools

A lightweight Python package providing simple mathematical operations.

## Features

- ➕ Addition
- ➖ Subtraction
- ✖️ Multiplication
- ➗ Division
- % Modulus

## Installation

Install the package from PyPI:

```bash
pip install maths-tools
```

or

```bash
python -m pip install maths-tools
```

## Usage

```python
import maths

print(maths.addition(10, 5))
print(maths.subraction(10, 5))
print(maths.multiplication(10, 5))
print(maths.division(10, 5))
print(maths.modulus(10, 5))
```

### Output

```
15
5
50
2.0
0
```

## Functions

| Function | Description |
|----------|-------------|
| `addition(a, b)` | Returns the sum of two numbers |
| `subraction(a, b)` | Returns the difference of two numbers |
| `multiplication(a, b)` | Returns the product of two numbers |
| `division(a, b)` | Returns the quotient of two numbers |
| `modulus(a, b)` | Returns the remainder after division |

## Requirements

- Python 3.9 or later

## License

MIT License

## Author

Arpit Soni

GitHub: https://github.com/Arpitsoni89/maths-tools
