Metadata-Version: 2.4
Name: zivy
Version: 0.2.0
Summary: A simple Python UI toolkit for X11
Author: olan
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Zivy

A simple Python UI toolkit for X11.

Zivy provides a clean, object/property-style API for creating graphical applications with Python.

## Features

- Simple API
- Object/property-style UI
- X11 support
- Lightweight
- Python-first
- Built on Tkinter

## Example

```python
from zivy import App

app = App()

app.title = "My App"
app.size = "400x800"

text = app.Text(app.root)
text.text = "Hello from Zivy!"

app.run()
```

## Backend

Zivy currently uses Tkinter as its backend.

```text
Your application
       ↓
      Zivy
       ↓
    Tkinter
       ↓
       Tk
       ↓
      X11
```

## Status

🚧 **Early development**

Zivy is currently in its first release. The API may change as development continues.

## License

MIT
