mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
25 lines
665 B
Python
25 lines
665 B
Python
from setuptools import setup, find_namespace_packages
|
|
|
|
|
|
setup(name='manim',
|
|
version='0.1.0',
|
|
description='Animation engine for explanatory math videos',
|
|
author='Grant Sanderson',
|
|
author_email='grant@3blue1brown.com',
|
|
url='https://github.com/3b1b/manim',
|
|
license='MIT',
|
|
packages=find_namespace_packages(),
|
|
install_requires=[
|
|
'colour',
|
|
'numpy',
|
|
'Pillow',
|
|
'progressbar',
|
|
'scipy',
|
|
'tqdm',
|
|
'opencv-python',
|
|
'pycairo',
|
|
'pydub',
|
|
],
|
|
scripts=['manim.py', 'stage_scenes.py'],
|
|
package_data={'manimlib': ['*.tex', 'files/**']},
|
|
)
|