Metadata-Version: 2.4
Name: BetterGuiSpark
Version: 0.1.0
Summary: A better and more powerful PyQt6 GUI framework
Author: Leonardo Nery
License: MIT
Keywords: pyqt,gui,framework,ui,builder
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: License
Requires-Dist: PyQt6
Requires-Dist: PyQt6-WebEngine
Dynamic: license-file

# BetterGuiSpark ⚡

BetterGuiSpark is a simple and powerful GUI framework built on top of PyQt6.

## Features

- Easy widget creation
- Event handling (keyboard + mouse)
- Built-in themes
- File handling
- Validation system

## Example

```python
from BetterGuiSpark import GuiSpark

app = GuiSpark("Test")

btn = app.add_widget("button", text="Click me", command=lambda: print("Clicked!"))

app.run()
