Metadata-Version: 2.4
Name: odd-even-checker-viswas
Version: 0.0.1
Summary: A simple Python package to check if a number is odd or even.
Author-email: Viswas B Kurian <your-email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/viswas-kurian/odd-even-checker
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_checker import is_even, is_odd

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