Metadata-Version: 2.4
Name: isnotodd
Version: 0.1.5
Summary: Add your description here
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# is even
use this library if you want to check if an integer is even or not and you think '%' is stupid.
the minimum and maximum value supported by this library are `-36` and `36`.

# installation
```bash
uv add isnotodd
```
or if you are old
```bash
pip install isnotodd
```

# usage
```python
from is_not_odd import is_even

print(is_even(36))
```
