Metadata-Version: 2.4
Name: jubin-odd-even
Version: 0.1.0
Summary: Simple odd or even checking functions
Author: Jubin Joy
Project-URL: Homepage, https://github.com/yourusername/oddoreven
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

# oddoreven-jubin
A simple Python package to check if a number is odd or even.

## Usage
```python
from oddoreven import is_even, is_odd

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