Metadata-Version: 2.4
Name: pygwin2
Version: 2.0.1
Summary: A library for creating GUI-applications on pygame.
Author-email: MeexReay <meexreay@gmail.com>
License-Expression: WTFPL
Project-URL: Homepage, https://github.com/MeexReay/pygwin2
Project-URL: Issues, https://github.com/MeexReay/pygwin2/issues
Keywords: gui,pygame,windows
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydub
Requires-Dist: pygame
Requires-Dist: pyautogui
Requires-Dist: inputs
Requires-Dist: pillow
Requires-Dist: wxPython
Requires-Dist: randstr
Dynamic: license-file

# Pygwin2

A library for creating GUI-applications on pygame.

[Documentation](https://github.com/MeexReay/pygwin2/blob/main/docs/DOCS.md)

## Usage

Here is a small example of usage (pygame style):

```py
import pygwin2 as pgw

win = pgw.create('Title',(500,500))

run = True
while run:
    for event in pgw.getEvents():
        if event.type == pgw.QUIT:
            run = False

    win.update()
pgw.close()
```

## Installation

The easiest way is to just use pip:

```sh
pip install pygwin2
```
