Metadata-Version: 2.2
Name: mwframebuf
Version: 0.1.0
Summary: A small retro-style 8-bit framebuffer for Python powered by SDL3 and C++
Author: Maik Tappe
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C++
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.10
Requires-Dist: numpy
Description-Content-Type: text/markdown

# MWFrameBuf

A small retro-style 8-bit framebuffer for Python, powered by C++, SDL3 and pybind11.

## Example

```python
import mwframebuf

fb = mwframebuf.Framebuffer(320, 200)

vram = fb.buffer()

while fb.running():
    vram[:] = 0
    vram[50:100, 100:200] = 2
    fb.flip()

fb.quit()
