Metadata-Version: 2.2
Name: kurlui
Version: 0.2
Summary: A simple UI library inspired by Rayfield
Home-page: 
Author: Xscripts Inc.
Author-email: sunnyplaysyt9@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# KurlUI

KurlUI is a Python UI library inspired by the Roblox Rayfield library, built with Tkinter.

## Installation

```sh
pip install kurlui
```

## Usage

```python
from kurlui import KurlUI 

def on_button_click():
    print("Button Clicked!")

ui = RayfieldUI()
tab = ui.create_tab("Main")
ui.add_button(tab, "Click Me", on_button_click)
ui.run()
```
