We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20598bd + a169645 commit d85f148Copy full SHA for d85f148
manim.py
setup.py
@@ -0,0 +1,30 @@
1
+from setuptools import setup, find_namespace_packages
2
+setup(
3
+ name="manimlib",
4
+ version="0.2.0",
5
+ description="Animation engine for explanatory math videos",
6
+ license="MIT",
7
+ packages=find_namespace_packages(),
8
+ package_data={ "manimlib": ["*.tex"] },
9
+ entry_points={
10
+ "console_scripts": [
11
+ "manim=manimlib:main",
12
+ "manimcm=manimlib:main",
13
+ ]
14
+ },
15
+ install_requires=[
16
+ "colour",
17
+ "argparse",
18
19
+ "numpy",
20
+ "Pillow",
21
+ "progressbar",
22
+ "scipy",
23
+ "tqdm",
24
+ "opencv-python",
25
+ "pycairo",
26
+ "pydub",
27
+ "pygments",
28
+ "pyreadline; sys_platform == 'win32'",
29
+ ],
30
+)
0 commit comments