Metadata-Version: 2.1
Name: palindrome-validator-checker
Version: 0.1
Summary: A Python library to validate if a string is a palindrome.
Author: Your Name
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Palindrome Validator Checker
A Python library to validate if a string is a palindrome, ignoring case and non-alphanumeric characters.

## Usage

```python
from palindrome_validator_checker import is_palindrome

print(is_palindrome('Racecar'))
print(is_palindrome('hello world'))
```
