Metadata-Version: 2.4
Name: oddoreven-merlin
Version: 0.2.0
Summary: A simple Python library to check whether a number is odd or even
Home-page: 
Author: Merlin
Author-email: you@example.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# oddoreven

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

## Installation

pip install oddoreven-merlin

## Usage

from oddoreven import check, is_even, is_odd
print(check(10))
print(is_even(7))
print(is_odd(7))
