Metadata-Version: 2.4
Name: odd-or-even-checker
Version: 0.1.0
Summary: A simple package to check if a number is odd or even.
Author: Tony
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# odd-or-even-checker

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

## Installation
```
pip install odd-or-even-checker
```

## Usage
```python
from odd_or_even import check_number
print(check_number(10))  # even
print(check_number(7))   # odd
```
