Metadata-Version: 2.4
Name: mr-odd-even
Version: 0.0.1
Summary: A simple odd or even number checker.
Author-email: Your Name <your.email@example.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Odd-Even Checker

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

## Usage

```python
from odd_even import is_even, is_odd

print(is_even(10))  # True
print(is_odd(11))   # True
