Metadata-Version: 2.4
Name: omar-math-tools-demo
Version: 0.0.2
Summary: A simple math utility package by Omar
Author: Omar
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Omar's Math Tools

This is a demo package created for Omar to perform simple math operations.

## Installation

```bash
pip install omar-math-tools-demo
```

## Usage

```python
from omar_math import is_prime, get_factorial, greet_omar

print(greet_omar())
print(f"Is 7 prime? {is_prime(7)}")
print(f"Factorial of 5 is {get_factorial(5)}")
```
