Metadata-Version: 2.4
Name: keyframe
Version: 0.0.1
Summary: An animation engine for Python!
Project-URL: Homepage, https://github.com/KeyFramePy/Keyframe
Author-email: Mohammad Parsa Mortazavi <mpmms@proton.me>
License: MIT
License-File: LICENSE
Keywords: animation,graphic,keyframe,timeline
Requires-Python: >=3.6
Requires-Dist: pillow
Description-Content-Type: text/markdown

# KeyFrame
A simple yet powerful animation timeline engine for Python.
---
## Installation
```bash
pip install keyframe
```
## Example
```python
from keyframe import Scene
scene = Scene(duration=3, bg_color="#111111", size=(720, 480), fps=30)
scene.render("keyframe.mp4")
```