Metadata-Version: 2.1
Name: IsNumberEven
Version: 1.1.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

# IsNumberEven Package

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

## Installation

Install `IsNumberEven` using pip:

```bash
pip install IsNumberEven
```

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

## Usage
Once installed, you can use the IsNumberEven 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
IsNumberEven is licensed under the MIT License. See the LICENSE file for more details.
