Files
manim-slides/setup.py
Federico Galatolo b9255e080c moved reqs
2021-04-22 17:16:58 +02:00

28 lines
855 B
Python

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=[
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
],
)