Metadata-Version: 2.5
Name: oddevenwusd
Version: 0.1.0
Summary: A simple Python library to check if numbers are odd or even
Author-email: Developer <developer@example.com>
License-Expression: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == 'test'
Description-Content-Type: text/markdown

# oddevenwusd

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

## Installation

You can install the package locally for development or testing:

```bash
pip install -e .[test]
```

## Usage

```python
from oddevenwusd import is_even, is_odd

print(is_even(4))  # True
print(is_odd(4))   # False
```

## Running Tests

To run the unit tests, use:

```bash
pytest
```
