Metadata-Version: 2.4
Name: arithoperator
Version: 1.0.1
Summary: A simple Python package to perform arithmetic operations on multiple numbers.
Author: Your Name
Author-email: Bineesh Shaji <bineeshshaji@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/bineeshs/arithop
Project-URL: Source, https://github.com/bineeshs/arithop
Project-URL: Tracker, https://github.com/bineeshs/arithop/issues
Keywords: arithmetic,math,numbers,calculator
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
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: author
Dynamic: requires-python

# arithop

A simple Python package to perform arithmetic operations on multiple numbers.

## Installation

```bash
pip install arithoperations
```

## Usage

```python
from arithoperations import operations 

operations.add(1, 2, 3)  # 6
operations.subtract(1, 2, 3)  # -4
operations.multiply(1, 2, 3)  # 6
operations.divide(1, 2, 3)  # 0.16666666666666666
```
