First commit

This commit is contained in:
Federico Galatolo
2021-04-22 17:11:07 +02:00
commit 7bfc2f60de
8 changed files with 1133 additions and 0 deletions

30
setup.py Normal file
View File

@ -0,0 +1,30 @@
import setuptools
import os
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.md"), "r") as fh:
long_description = fh.read()
setuptools.setup(
name="manim_presentation",
version="0.1.0",
author="Federico A. Galatolo",
author_email="federico.galatolo@ing.unipi.it",
description="",
url="",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
entry_points = {
"console_scripts": ["manim_presentation=manim_presentation.present:main"],
},
install_requires=[
"manim==0.5.0",
"opencv-python==4.5.1.48"
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
],
)