Metadata-Version: 2.1
Name: IsNumberEven
Version: 1.0.0
Summary: Return true if the given number is even.
Home-page: https://github.com/programadriano/is-even
Author: Thiago S Adriano
Author-email: prof.thiagoadriano@gmail.com
License: MIT
Description-Content-Type: text/markdown

# isEven Package

The `isEven` package provides a simple utility to check whether a given number is even. 

## Installation

Install `isEven` using pip:

```bash
pip install isEven
```

This will download and install the latest version of isEven from PyPI.

## Usage
Once installed, you can use the isEven function in your Python scripts as follows:

```bash
from isEven.is_even import is_even

# Example usage
number = 4
print(is_even(number))  # Output: True
```

## License
isEven is licensed under the MIT License. See the LICENSE file for more details.
