Metadata-Version: 2.4
Name: puzzleandy
Version: 15
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Multimedia :: Graphics
Requires-Dist: moderngl
Requires-Dist: numpy<2.1
Requires-Dist: opencv-python
Requires-Dist: scikit-image
Description-Content-Type: text/markdown

```
import ctypes
import platform
from puzzleandy import *
if platform.system() == 'Windows':
	ctypes.windll.shcore.SetProcessDpiAwareness(1)

x = horses()
y = flip_hor(x)
z = multiply(y,x)
z = gamma(z,0.7)
show(z)
```