2019-04-28 07:17:15 +02:00
|
|
|
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',
|
|
|
|
],
|
2019-05-02 20:36:14 -07:00
|
|
|
scripts=['manim.py', 'stage_scenes.py'],
|
2019-04-28 07:17:15 +02:00
|
|
|
package_data={'manimlib': ['*.tex', 'files/**']},
|
|
|
|
)
|