Metadata-Version: 2.4
Name: odd-or-even-808
Version: 0.1.0
Summary: A simple package to check odd or even numbers
Author: Sharvin Vincent
License: MIT
Project-URL: Homepage, https://pypi.org/project/odd-or-even-808/
Project-URL: Source, https://github.com/sharvin808/odd-or-even-808
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# odd-or-even

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

## Usage

```python
from odd_or_even import is_even, is_odd

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