Metadata-Version: 2.4
Name: ifatmagamha-package-creation
Version: 0.1.0
Summary: A simple Python package for string manipulation operations
Author: ifatmagamha
Author-email: gamhaif@gmail.com
Requires-Python: >=3.8
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
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.15.1,<0.16.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

A simple Python package demonstrating string manipulation operations.

## Features

- **Reverse String**: Reverse any string
- **Count Vowels**: Count vowels in a string
- **Capitalize Words**: Capitalize the first letter of each word

## Installation

```bash
pip install ifatmagamha-package-creation
```

## Usage

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

# Reverse a string
result = reverse_string("hello world")
print(result)  # Output: dlrow olleh

# Count vowels
count = count_vowels("hello world")
print(count)  # Output: 3

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

## Development

### Setup

```bash
# Clone the repository
git clone https://github.com/ifatmagamha/py_project.git
cd py_project/package_creation

# Install dependencies
poetry install

# Run tests
poetry run python -m unittest tests.test_string_ops -v
```

### Building

```bash
poetry build
```

### Testing

```bash
poetry run python -m unittest discover tests -v
```

## Documentation

Full documentation is available at: https://ifatmagamha.github.io/py_project/

## License

MIT License

## Author

ifatmagamha (gamhaif@gmail.com)

