-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 970 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 970 Bytes
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
33
34
35
36
[tool.poetry]
name = "manim_editor"
version = "0.2.1"
description = "Editor and Presenter for Manim Generated Content"
authors = ["christopher-besch <christopher.besch@gmx.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ManimEditorProject/manim_editor"
documentation = "https://manim-editor.readthedocs.io"
include = [
"manim_editor/app/static/webpack/*"
]
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^2.0.2"
click = "^8.0.3"
# TODO: uncomment once released
# manim = "^0.12.0"
waitress = "^2.0.0"
jsonschema = "^4.1.2"
[tool.poetry.dev-dependencies]
manim = { git = "https://github.com/ManimCommunity/manim", branch = "main" }
Sphinx = "^4"
myst-parser = "^0.15.2"
furo = "^2021.10.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins]
[tool.poetry.plugins."console_scripts"]
"manedit" = "manim_editor.__main__:main"
"manim_editor" = "manim_editor.__main__:main"