Metadata-Version: 2.4
Name: string-utils-package
Version: 0.1.1
Summary: A collection of useful string manipulation and validation functions
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/string-utils-package
Project-URL: Repository, https://github.com/yourusername/string-utils-package
Project-URL: Issues, https://github.com/yourusername/string-utils-package/issues
Keywords: string,utilities,validation,manipulation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Dynamic: license-file

# String Utilities

A collection of useful string manipulation and validation functions.

## Installation

```bash
pip install string-utils-package
```

## Usage

```python
from string_utils import reverse_string, is_palindrome, slugify

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

# Check if palindrome
print(is_palindrome("radar"))   # Output: True

# Create slug
print(slugify("Hello World!"))  # Output: "hello-world"
```

## Available Functions

### Core Functions
- `reverse_string(text)`: Reverse a string
- `capitalize_words(text)`: Capitalize each word
- `slugify(text)`: Convert to URL-friendly slug

### Validation Functions  
- `is_palindrome(text)`: Check if string is palindrome
- `is_strong_password(password)`: Validate password strength

## License

MIT License - see LICENSE file for details.
