Metadata-Version: 2.4
Name: axto
Version: 0.0.3
Summary: Simple TUI library.
Author: Rioxpi
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# AXTO

Simple TUI (Text User Interface) library for Python.

## INSTALLATION
```
pip install axto
```

## QUICK START
```python
from axto import Engine
from axto.widgets.box import Box

app = Engine()
box1 = Box(x=5, y=5, width=20, height=10)
app.add_widget(box1)
app.run()
```

## AVAILABLE WIDGETS
1. BOX
2. INPUT
3. BUTTON

## CONTROLS
* `CTRL+C`, `CTRL+Q`, `ESC` – exit engine
* `TAB` – select next widget

## DOCUMENTATION
You can find the full documentation in the `docs/` directory.
