Metadata-Version: 2.1
Name: math-ops-131
Version: 1.5.2
Summary: A Python package for basic mathematical operations.
Home-page: https://github.com/AspiringPianist/math_ops_131
Author: Unnath Chittimalla
Author-email: unnath.chittimalla@iiitb.ac.in
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# math_ops_131 Package 

## Description 

The `math_ops_131` package is a simple Python library that provides basic mathematical operations such as addition, subtraction, and multiplication. 

## Installation 

You can install the package using pip: 

```bash
pip install math_ops_131 
```

## Usage 

Import the `math_ops_131` module to use the provided functions: 
```python 
import math_ops_131.calculator as calc 

# Example usage 
result_add = calc.add(5, 3)  # Result: 8 
result_sub = calc.subtract(10, 4)  # Result: 6  
result_mul = calc.multiply(2, 7)  # Result: 14 
```
For detailed documentation of each function, refer to the docstrings in `main.py`. 

## License 

This project is licensed under the MIT License - see the LICENSE file for details.


