Metadata-Version: 2.4
Name: SmolPyGUI
Version: 1.60
Summary: A little GUI system made with pygame
Author-email: Smol <kingalexander471@gmail.com>
License: MIT
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygame>=2.6.1
Dynamic: license-file

[GITHUB REPOSITORY](https://github.com/thebroskialex/SmolPyGUI)

SmolPyGUI is a little personal project that I decided I would upload to PyPI. 
Below are some examples of usage.

A Simple Hello World
```python
from SmolPyGUI import initialize, Button, MainLoop

initialize((500,500)) #makes a 500x500 window

Button(300,300,100,100,"#ff0000",lambda: print("Hello World!")) #makes a 100x100 red button at 300,300 that prints "Hello World!"

MainLoop() #starts the program
```
