Metadata-Version: 2.4
Name: Package_Creation
Version: 0.1.0
Summary: 
Author: OubeidAllahJemli
Author-email: jemlioubeidallah@gmail.com
Requires-Python: >=3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
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)
Requires-Dist: sphinx-rtd-theme (>=3.1.0,<4.0.0)
Description-Content-Type: text/markdown

# Package Creation Tutorial

A simple Python package for string operations.

## Installation

```bash
pip install package-creation-cayzen
```

## Usage

```python
from package_creation_tutorial.string_ops import reverse_string

result = reverse_string("hello")
print(result)  # "olleh"
```

