Metadata-Version: 2.4
Name: Wysebee
Version: 0.0.7
Summary: A simple cross-platform framework for your AI project.
Author-email: Jeff Xu <zxu@wysebee.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Dist: pyside6>=6.9.0
Requires-Dist: Jinja2>=3.1.2
Requires-Dist: typer>=0.15.2
Requires-Dist: colorama>=0.4.6
Requires-Dist: watchdog==6.0.0
Project-URL: Homepage, https://github.com/wysebee/wysebee
Project-URL: Issues, https://github.com/wysebee/wysebee/issues

# Wysebee

**Wysebee** is a cross-platform desktop application framework that enables developers to build modern, responsive user interfaces using web technologies — while leveraging the power of **PySide (Qt)** under the hood.

Wysebee is designed to simplify the development of desktop apps by combining the flexibility of HTML/CSS/JavaScript frontends with the robustness of Python and Qt on the backend.

---

## Installation

You can install Wysebee using `pip`:

```bash
pip install wysebee
```

## Usage

### Create your first app

```bash
wb init test_app
cd test_app
python main.py
```

### Build only ui

```bash
wb build --ui
```
