refactorization

This commit is contained in:
MeexReay 2025-09-20 15:56:18 +03:00
parent ceaf3d455a
commit c0731d3b2a
71 changed files with 218 additions and 1950 deletions

56
pygwin2.egg-info/PKG-INFO Normal file
View file

@ -0,0 +1,56 @@
Metadata-Version: 2.4
Name: pygwin2
Version: 2.0.0
Summary: A small example package
Author: themixray
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: requests
Requires-Dist: pyautogui
Requires-Dist: inputs
Requires-Dist: pillow
Requires-Dist: wxPython
Requires-Dist: randstr
Requires-Dist: cython
Requires-Dist: pywin32
Requires-Dist: moviepy
Requires-Dist: pipwin
Requires-Dist: wave
Requires-Dist: opencv-python
Dynamic: author
Dynamic: license-file
# Pygwin2
A library for creating GUI-applications on pygame.
[Documentation](docs/DOCS.md)
## Usage
Here is a small example of usage (pygame style):
```py
import pygwin
win = pygwin.create('Title',(500,500))
run = True
while run:
for event in pygwin.getEvents():
if event.type == pygwin.QUIT:
run = False
win.update()
pygwin.close()
```

View file

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,14 @@
pydub
pygame
requests
pyautogui
inputs
pillow
wxPython
randstr
cython
pywin32
moviepy
pipwin
wave
opencv-python

View file

@ -0,0 +1 @@
pygwin