Metadata-Version: 2.4
Name: odd-or-even
Version: 0.1.0
Summary: A simple library to check if a number is odd or even.
Home-page: https://github.com/ajayjoseph13/odd-or-even
Author: Ajay Antony Joseph
Author-email: AJAYJOSEPH24@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Odd or Even

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

## Installation

You can install the library via pip:

```bash
pip install odd-or-even


#usage
from odd_or_even import is_odd, is_even

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