mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-07-07 08:36:01 +08:00
9 lines
200 B
Python
9 lines
200 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="manim_ml",
|
|
version="0.0.12",
|
|
description=(" Machine Learning Animations in python using Manim."),
|
|
packages=find_packages(),
|
|
)
|