Metadata-Version: 2.4
Name: PinguinGUI
Version: 0.1.0
Summary: An SVG-based GUI designer and runtime with PyQt6
Author: PinguinGUI
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/PinguinGUI
Project-URL: Repository, https://github.com/yourusername/PinguinGUI
Project-URL: Documentation, https://github.com/yourusername/PinguinGUI
Keywords: gui,designer,svg,pyqt6,ui
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: PyQt6>=6.5

# PinguinGUI

An SVG-based GUI designer and runtime for Python, built on PyQt6.

## Installation

```bash
pip install PinguinGUI
```

## Usage

### Editor
```bash
pinguingui
# or
pgui
```

### Runtime
```bash
pinguingui my_design.pgui
```

### Python Import
```python
from PinguinGUI import PinguinGUI

app = PinguinGUI("My App")
app.design("my_design.pgui")
app.show()

@app.btn1.on("click")
def on_click(item):
    print("Button clicked!")

app.run()
```

## License
MIT
