Metadata-Version: 2.4
Name: math-lib-taha
Version: 0.2.0
Summary: A simple math library for adding two numbers
Author-email: Taha <mohammadtahanazir@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# My Math Lib

A simple Python library to add two numbers.

## Example

```python
from my_math_lib import add_numbers

print(add_numbers(3, 5))
