Metadata-Version: 2.4
Name: odd-or-even_s
Version: 0.1.0
Summary: A simple Python package to check if a number is odd or even.
Author: Your Name
Author-email: Your Name <your@email.com>
License: MIT
Project-URL: Homepage, https://pypi.org/project/odd-or-even/
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file

# odd-or-even

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

## Installation

pip install odd-or-even

## Usage

```python
from odd_or_even import is_even, is_odd

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