Skip to content

Commit d85f148

Browse files
authored
Merge pull request #45 from ManimCommunity/setuptools
Add setup.py
2 parents 20598bd + a169645 commit d85f148

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

manim.py

-5
This file was deleted.

setup.py

+30
Original file line numberDiff line numberDiff line change
@@ -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+
"colour",
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

Comments
 (0)