moved reqs

This commit is contained in:
Federico Galatolo
2021-04-22 17:16:58 +02:00
parent 5c5a2e5b9d
commit b9255e080c
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,8 @@ Tool to do live presentations using [manim](https://www.manim.community/)
## Install ## Install
``` ```
pip install -e git+https://github.com/galatolofederico/manim-presentation.git pip install manim opencv-python
pip install -e git+https://github.com/galatolofederico/manim-presentation.git#egg=manim_presentation
``` ```
## Usage ## Usage
@ -64,6 +65,7 @@ git clone https://github.com/galatolofederico/manim-presentation.git
cd manim-presentation cd manim-presentation
virtualenv --python=python3.7 env virtualenv --python=python3.7 env
. ./env/bin/activate . ./env/bin/activate
pip install manim opencv-python
python setup.py install python setup.py install
``` ```

View File

@ -18,8 +18,6 @@ setuptools.setup(
"console_scripts": ["manim_presentation=manim_presentation.present:main"], "console_scripts": ["manim_presentation=manim_presentation.present:main"],
}, },
install_requires=[ install_requires=[
"manim==0.5.0",
"opencv-python==4.5.1.48"
], ],
classifiers=[ classifiers=[
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",