Metadata-Version: 2.4
Name: stinkit
Version: 0.1.0
Summary: Helper Library
Author: code-runner1306
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# String Exam Kit

A small Python package with simple string utility functions for competitive coding revision.

## Install

```bash
pip install string-exam-kit
```

## Example

```python
from string_exam_kit import reverse_words, is_anagram

print(reverse_words("hello world"))
print(is_anagram("listen", "silent"))
```
