Metadata-Version: 2.1
Name: basic_math_ayush
Version: 0.0.1
Summary: A small package to perform basic mathematical operations
Author-email: AyushCodez <Ayush.Gupta546@iiitb.ac.in>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Basic math package
This package has functions that allow you to perform various mathematical operations on 2 floating point numbers upto 10 decimal point precision. The operations you can perform are:
* Addition
* Subtraction
* Multiplication

## Requirements
python >= 3.8

## Installation
```ps
$ pip install basic_math_ayush
```

## Usage
```py
import basic_math_ayush

print(basic_math_ayush.add(1.3, 2.2)) 
print(basic_math_ayush.sub(5.4, 2)) 
print(basic_math_ayush.mult(4.8, 2)) 

#OUTPUT
#3.5
#3.4
#9.6
```

## LICENSE
This project is licensed under the terms of the MIT [license](https://choosealicense.com/licenses/mit/)




