Metadata-Version: 2.1
Name: gumpython
Version: 0.2.0
Summary: A python library for gum cli
License: MIT
Author: Wasi Haider
Author-email: wsi.haidr@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# GumPython
 A python library for gum cli

## Requirements

- [gum cli](https://github.com/charmbracelet/gum)
- Python >= 3.8

## How to Use

```python
from gumpython import Style, color, alignment, border

style = Style(["Hi there!", "My name is GumPython :)"]) \
            .border(border.ROUNDED, foreground_color=color.FUCHSIA) \
            .text_color(foreground=color.AQUA) \
            .align(alignment=alignment.CENTER) \
            .text_font(bold=True, italic=True)

style.run()
```
