Metadata-Version: 2.4
Name: sgm3
Version: 0.1.3
Summary: A user-friendly GUI module, made for Python 3.
Author: Swaraaj Arora
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# SGM

* The sgm module is made by Swaraaj Arora and is a user-friendly GUI framework.

## EXAMPLE (HELLO WORLD!)
```python
from sgm import SGMApplication, SGMText
app = SGMApplication(title="Window", resizable=True)
text = SGMText(parent=app, text="Hello, World!", width=25, height=3, size=10)
text.Show()
app.StartLoop()
```
