Metadata-Version: 2.4
Name: textwrap-ext
Version: 1.2.5
Summary: A lightweight utility for advanced text wrapping and terminal alignment.
Author: TextStack Devs
Author-email: contact@textstack.io
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Filters
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary


# Textwrap Ext

A Python library designed to extend the capabilities of the built-in `textwrap` module. 
It provides additional controls for dynamic terminal widths, ANSI escape sequence handling, 
and structured log formatting.

## Installation
```bash
pip install textwrap-ext
```

## Usage
```python
from textwrap_ext import format_block
print(format_block("Your long text here...", width=40))
```
