Metadata-Version: 2.4
Name: odd_or_even_meenadevi
Version: 0.0.1
Summary: A simple Python package to check whether a number is odd or even.
Author-email: Meenadevi <example@example.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# odd_or_even

A simple Python package to check whether a number is odd or even.

## Example

```python
from odd_or_even import is_even, is_odd

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