Metadata-Version: 2.4
Name: odenmark
Version: 0.1.1
Summary: A simple odd/even checker library.
Author-email: JIYO P V <jiyopv21@gmail.com>
Project-URL: Homepage, https://github.com/jiyo-pv/odenmark
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

## odenmark

'''A simple Python library to check whether a number is odd or even.
'''
## Usage

'''python
from odenmark import is_even, is_odd

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

'''

# 📌 Build & Upload

### Install tools:

'''
