Metadata-Version: 2.3
Name: pyguiEZ
Version: 0.1.0
Summary: A lightweight GUI framework inspired by tkinter.
License: MIT
Author: Kk Chen
Author-email: kkyian@icloud.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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
Requires-Dist: pygame (>=2.0,<3.0)
Description-Content-Type: text/x-rst

pyguiEZ
=======

A lightweight, beginner-friendly GUI framework inspired by tkinter, built with pygame.

Example usage:

.. code-block:: python

    from pyguiEZ.app import App
    from pyguiEZ.label import Label
    from pyguiEZ.button import Button

    app = App("Demo")
    label = Label(app, "Hello", pos=(10, 10))

    def say_hi():
        label.set_text("Hi!")

    button = Button(app, "Click Me", pos=(10, 50), command=say_hi)
    app.run()

