Metadata-Version: 2.1
Name: pyarithops
Version: 0.0.1
Summary: A package for evaluation of Arithmetic operations.
Author-email: Atiq Mansoori <atiqsm24@gmail.com>
Project-URL: Homepage, https://github.com/ASM313/pyarithops
Project-URL: Bug Tracker, https://github.com/ASM313/pyarithops/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# About [PyArihtOps] Package

This is a simple package which helps in the calculation. You can see it at GitHub also

## How to install it on Windows
```
pip install pyarithops
```
## How to install it on Linux
```
sudo pip3 install pyarithops
```
## How to use it

### Initializing the Package

```
from pyarithops import PyArithOps

num1 = 7
num2 = 3

calc = PyArithOps(num1, num2)
```

### Adding two numbers
```
calc.addition()
```
### Subtracting two numbers
```
calc.subtraction()
```
### Multiplying two numbers
```
calc.multiplication()
```
### Dividing two numbers
```
calc.division()
```
