Metadata-Version: 2.4
Name: yassine-string-utils
Version: 0.1.0
Summary: A simple Python package for string operations
Author: Mohamed Yassine Madhi
Author-email: yassine.madhi6@gmail.com
Requires-Python: >=3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pre-commit (>=4.5.1,<5.0.0)
Requires-Dist: pytest (>=9.0.2,<10.0.0)
Requires-Dist: pytest-cov (>=7.0.0,<8.0.0)
Requires-Dist: ruff (>=0.14.13,<0.15.0)
Requires-Dist: sphinx (>=9.1.0,<10.0.0)
Description-Content-Type: text/markdown

# yassine-string-utils

A simple Python package for string operations including reversing, vowel counting, and capitalization.

## Installation

```bash
pip install yassine-string-utils
```

## Usage

```python
from yassine_string_utils.string_ops import reverse_string, count_vowels, capitalize_words

print(reverse_string("hello"))  # "olleh"
print(count_vowels("hello"))    # 2
print(capitalize_words("hello world"))  # "Hello World"
```

## Author

Mohamed Yassine Madhi

