Metadata-Version: 2.1
Name: mymathlib_ismail11_shma
Version: 0.1.0
Summary: A simple math library for basic arithmetic operations
Home-page: https://github.com/yourusername/mymathlib
Author: Your Name
Author-email: your.email@example.com
License: MIT
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

A simple math library that provides addition, subtraction, multiplication, and division functions.

## Installation
```sh
pip install mymathlib_ismail11_shma
```

## Usage
```python
from mymathlib.arithmetic import add, subtract, multiply, divide

print(add(2, 3))  # Output: 5
print(subtract(5, 2))  # Output: 3
print(multiply(4, 3))  # Output: 12
print(divide(10, 2))  # Output: 5.0
```
