-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
32 lines (30 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.2.1",
author="Federico A. Galatolo",
author_email="[email protected]",
description="Tool for live presentations using manim",
url="https://github.com/galatolofederico/manim-presentation",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
entry_points = {
"console_scripts": [
"manim_presentation=manim_presentation.present:main",
"manim-presentation=manim_presentation.present:main",
"manim-presentation-wizard=manim_presentation.wizard: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"
],
)