Metadata-Version: 2.3
Name: algomanim
Version: 0.1.4
Summary: Manim-powered algorithm tasks visualizations for LeetCode and beyond
License: MIT
Author: Benedict Abub
Author-email: fkhurkhd2123dfs@tutamail.com
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: manim (>=0.19.0)
Requires-Dist: pytest (>=8.4.1,<9.0.0)
Project-URL: Homepage, https://github.com/benabub/algomanim
Project-URL: Repository, https://github.com/benabub/algomanim
Description-Content-Type: text/markdown

# algomanim

A Manim-based library for visualizing algorithms and explaining LeetCode-style solutions.

## Demo

### ScreenShot

![screenshot](assets/screenshot.png)

### Gif

![gif](assets/bubble_sort.gif)

## Installation

```sh
pip install algomanim
```

## Usage

```python
from algomanim import Array, TopText, CodeBlock
# Use these classes in your Manim scenes
```

## Development & Testing

Clone the repository and run:

```sh
poetry install
poetry run pytest
```

## License

MIT

