Metadata-Version: 2.4
Name: purewind
Version: 0.1.1
Summary: A tiny windowing wrapper built on WIN-32 api
Author-email: winddowned <none@gmail.com>
License: MIT
Keywords: window,win32,graphics,purewind
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: pytest>=7.0; extra == "dev"

# purewind 🌬️

A **tiny Windows‑only** Python wrapper that creates a native window and gives you a simple game‑loop, input handling, and immediate‑mode text rendering via the Win32 API.  
Only the standard library (`ctypes`) is required, so there are no external binary dependencies to ship.

---  

# CHANGELOG
```markdown
0.1.1:
[+] Added key press callback system
[+] Added mouse move callback system
[+] Added onKeyPress() and onMouseMove() helper methods
[*] Updated _WndProc to trigger callbacks automatically
```

## How to install

```bash
pip install purewind
