Metadata-Version: 2.4
Name: pipOddEven
Version: 0.1.0
Summary: A simple library to check if a number is odd or even.
Author-email: Shiv <bshivkiran120602@gmail.com>
Project-URL: Homepage, https://github.com/Shiv-Kiran/pipOddEven
Project-URL: Issues, https://github.com/Shiv-Kiran/pipOddEven/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pipOddEven

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

## Features

- Check if a number is odd or even
- Lightweight and easy to use
- Suitable for learning and quick prototyping

## Installation

```bash
pip install pipOddEven
```

## Usage

```python
from pipOddEven import is_odd, is_even

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

## Contributing

Contributions are welcome! Please open issues or submit pull requests.

## License

This project is licensed under the MIT License.
