Metadata-Version: 2.1
Name: zeekit
Version: 1.0.0.0a0
Summary: A nice python 2d/3d/Gui library that relies soley on window events and drawing functions to work
Author-email: Cariel Becker <cariel.becker@gmx.de>
Maintainer-email: Cariel Becker <cariel.becker@gmx.de>
License: LGPL-2.1-or-later
Project-URL: Home, https://pypi.org/project/zeekit/
Project-URL: Repository, https://github.com/adalfarus/zeekit
Project-URL: Documentation, https://github.com/adalfarus/zeekit/wiki
Project-URL: Issue tracker, https://github.com/adalfarus/zeekit/issues
Keywords: general,graphic,app,zeekit
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: all

<p float="center">
  <img src="/resources/light-transparent.svg" width="100%" alt="Zee-Kit"/>
</p>

This is a clever word play on the word See and Kit but with Z -- for coolness

If you have a better name please contact me


## How to set-up and use

```bash
py -m pip install zeekit zkit-pygame --upgrade
``` 

### Basic code example

```python
from zkitpg import PygameBackend
import zkit

# Create a render instance, this creates a window
renderer = zkit.Renderer(PygameBackend)

```
