Metadata-Version: 2.4
Name: package-creation-tutorial-rmekni
Version: 0.1.0
Summary: A tutorial package for string operations
Keywords: string,tutorial,operations
Author: Ryhem Mekni
Author-email: rihemmekni6@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Project-URL: Documentation, https://rhemmekni.github.io/package_creation_tutorial/
Project-URL: Homepage, https://github.com/RyhemMekni/package_creation_tutorial
Project-URL: Repository, https://github.com/RyhemMekni/package_creation_tutorial
Description-Content-Type: text/markdown

# package-creation-tutorial-rmekni

A tutorial package for string operations in Python.

## Installation

```bash
pip install package-creation-tutorial-rmekni
```

## Usage

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

# Reverse a string
print(reverse_string("hello"))  # Output: olleh

# Count vowels
print(count_vowels("hello"))  # Output: 2

# Capitalize words
print(capitalize_words("hello world"))  # Output: Hello World
```

## Features

- **reverse_string**: Reverse any string
- **count_vowels**: Count the number of vowels in a string
- **capitalize_words**: Capitalize the first letter of each word

## Documentation

Full documentation is available at: https://rhemmekni.github.io/package_creation_tutorial/

## Repository

Source code: https://github.com/RyhemMekni/package_creation_tutorial

## License

MIT License

