Metadata-Version: 2.4
Name: maha_eo
Version: 0.0.1
Summary: A simple Python library to check if a number is odd or even
Author-email: Mahadevan Nair <mahadevannair16@gmail.com>
License: MIT
Project-URL: Homepage, https://pypi.org/project/maha_eo/
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# maha_eo

A simple Python library to check if a number is odd or even.

## Usage

```python
from maha_eo import is_even, is_odd

print(is_even(4))  # True
print(is_odd(5))   # True
```
