Metadata-Version: 2.4
Name: odder
Version: 0.1.0
Summary: A simple library to check odd or even numbers
Author-email: Dion Siji <dionsijik@gmail.com>
Project-URL: Homepage, https://pypi.org/project/dion-odder/
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# odder

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

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

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