Metadata-Version: 2.4
Name: mj_odd_or_even
Version: 0.1.0
Summary: A simple library to check odd and even numbers.
Author-email: Maria Jose <4mariajo@gmail.com>
License: MIT License
        
        Copyright (c) 2025 MARIA JOSE
        
        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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# MJ_odd_or_even

A tiny, dependency-free Python library to check whether an integer is odd or even.

## Installation

```bash
pip install mj_odd_or_even

```python
from mj_odd_or_even import is_odd, is_even

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

