Metadata-Version: 2.4
Name: anwin-odd-or-even
Version: 0.0.1
Summary: A simple package to check odd or even numbers
Author-email: Anwin Jojo <anwinasprogramer@gmail.com>
Project-URL: Homepage, https://github.com/guess-watt/anwin_odd_or_even
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# odd-or-even

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

## Usage

```python
from anwin_odd_or_even import is_even, is_odd

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