forked from ManimCommunity/manim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pbr automatically uses the version from git tags, and also uses the requirements.txt for dependencies, resulting in less redundancies.
- Loading branch information
Showing
3 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[metadata] | ||
name = manim | ||
author = Grant Sanderson | ||
author-email= [email protected] | ||
summary = Animation engine for explanatory math videos | ||
description-file = README.md | ||
description-content-type = text/x-md; charset=UTF-8 | ||
home-page = https://github.com/3b1b/manim | ||
project_urls = | ||
Bug Tracker = https://github.com/3b1b/manim/issues | ||
Documentation = https://github.com/3b1b/manim | ||
Source Code = https://github.com/3b1b/manim | ||
license = MIT | ||
|
||
[files] | ||
packages = manimlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,8 @@ | ||
from setuptools import setup, find_namespace_packages | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup | ||
|
||
setup(name='manim', | ||
version='0.1.0', | ||
description='Animation engine for explanatory math videos', | ||
author='Grant Sanderson', | ||
author_email='[email protected]', | ||
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/**']}, | ||
setup( | ||
setup_requires=['pbr'], | ||
pbr=True, | ||
) |