Metadata-Version: 2.1
Name: pygwin
Version: 0.2.0
Summary: pygame window system
Home-page: https://gitlab.com/qouify/pygwin/
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

#  Pygwin

Pygwin (pygame window system) provides a set of classes to program
very basic window interfaces with pygame.

pygwin is hosted on gitlab:
https://gitlab.com/qouify/pygwin/


## license

Pygwin is published under the term of
[GPLv3](https://www.gnu.org/licenses/gpl-3.0.txt).


## installation

Install latest pygwin release with pip:

```
pip3 install pygwin
```

or to get the development version:
```
git clone https://gitlab.com/qouify/pygwin/
cd pygwin
python setup.py install --user
```


## testing

To see the some of the features provided by the module:

```python
from pygwin.test import test
test.go()
```


