Metadata-Version: 2.4
Name: package-ramy-creation-tutorial
Version: 0.1.0
Summary: A tutorial package for string operations
Author: Ramy Lazghab
Author-email: ramylazghab19@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# Package Ramy Creation Tutorial

A simple Python package for string operations.

## Installation
```bash
pip install package-ramy-creation-tutorial
```

## 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 world"))  # Output: 3

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

## Features

- Reverse strings
- Count vowels in text
- Capitalize words

## Author

Ramy Lazghab
