Metadata-Version: 2.4
Name: tj_odd_or_even
Version: 0.1.0
Summary: A simple library to check odd or even numbers.
Author-email: Treesa Jose <2treesajo@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Your Name
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction...
Keywords: odd,even,numbers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# tj_odd_or_even

A simple Python library to check whether numbers are odd or even.

## Installation

You can install the package using pip:

```bash
pip install tj_odd_or_even

from tj_odd_or_even import is_even, is_odd

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

