mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
128 lines
3.3 KiB
TOML
128 lines
3.3 KiB
TOML
[tool.poetry]
|
|
name = "manim"
|
|
version = "0.11.0"
|
|
description = "Animation engine for explanatory math videos."
|
|
authors = ["The Manim Community Developers","3b1b <grant@3blue1brown.com>"]
|
|
license="MIT"
|
|
readme="README.md"
|
|
repository="https://github.com/manimcommunity/manim"
|
|
documentation="https://docs.manim.community/"
|
|
homepage="https://www.manim.community/"
|
|
classifiers= [
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Multimedia :: Video",
|
|
"Topic :: Multimedia :: Graphics",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Natural Language :: English",
|
|
]
|
|
exclude = ["scripts/","logo/","readme-assets/"]
|
|
packages = [
|
|
{ include = "manim" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
click = ">=7.1<=9.0"
|
|
click-default-group = "*"
|
|
colour = "*"
|
|
numpy = "^1.9"
|
|
Pillow = "*"
|
|
scipy = "*"
|
|
tqdm = "*"
|
|
pydub = "*"
|
|
pygments = "*"
|
|
rich = ">=6.0"
|
|
pycairo = "^1.19"
|
|
manimpango = "^0.3.0"
|
|
networkx = "^2.5"
|
|
decorator = "^5.0.7"
|
|
setuptools = "*"
|
|
importlib-metadata = {version = "*", python = "<3.8"}
|
|
grpcio = { version = "1.33.*", optional = true }
|
|
grpcio-tools = { version = "1.33.*", optional = true }
|
|
watchdog = "*"
|
|
jupyterlab = { version = "^3.0", optional = true }
|
|
moderngl = "^5.6.3"
|
|
moderngl-window = "^2.3.0"
|
|
mapbox-earcut = "^0.12.10"
|
|
cloup = "^0.7.0"
|
|
requests = "*"
|
|
dearpygui = { version = "^0.8", optional = true }
|
|
screeninfo = "^0.6.7"
|
|
skia-pathops = "^0.7.0"
|
|
isosurfaces = "0.1.0"
|
|
|
|
[tool.poetry.extras]
|
|
webgl_renderer = ["grpcio","grpcio-tools"]
|
|
jupyterlab = ["jupyterlab"]
|
|
gui = ["dearpygui"]
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest-cov = "*"
|
|
pytest = "^6.0"
|
|
pylint = "*"
|
|
Sphinx = "^4"
|
|
sphinx-copybutton = "*"
|
|
sphinxext-opengraph = "*"
|
|
furo = "*"
|
|
recommonmark = "*"
|
|
matplotlib = "^3.3.2"
|
|
pre-commit = "^2.11.1"
|
|
gitpython = "^3"
|
|
pygithub = "^1"
|
|
flake8 = "^3.9.0"
|
|
isort = "^5.8.0"
|
|
pytest-xdist = "^2.2"
|
|
psutil = ">=3.0"
|
|
flake8-builtins = "^1.5.3"
|
|
flake8-bugbear = "^21.4.3"
|
|
flake8-docstrings = "^1.6.0"
|
|
flake8-rst-docstrings = "^0.2.3"
|
|
flake8-pytest-style = "^1.5.0"
|
|
flake8-simplify = "^0.14.1"
|
|
flake8-comprehensions = "^3.6.1"
|
|
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/ManimCommunity/manim/issues"
|
|
"Changelog" = "https://docs.manim.community/en/stable/changelog.html"
|
|
"Twitter" = "https://twitter.com/manim_community"
|
|
"Discord" = "https://www.manim.community/discord/"
|
|
|
|
[tool.poetry.dev-dependencies.black]
|
|
version = "^20.8b1"
|
|
allow-prereleases = false
|
|
python = "^3.6"
|
|
markers = "platform_python_implementation == 'CPython'"
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = "slow: Mark the test as slow. Can be skipped with --skip_slow"
|
|
addopts = "--no-cov-on-fail --cov=manim --cov-report xml --cov-report term -n auto --dist=loadfile"
|
|
|
|
[tool.isort]
|
|
# from https://black.readthedocs.io/en/stable/compatible_configs.html
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
ensure_newline_before_comments = true
|
|
line_length = 88
|
|
|
|
[tool.coverage.run]
|
|
omit = ["*tests*"]
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = ["pragma: no cover"]
|
|
|
|
[tool.poetry.plugins]
|
|
[tool.poetry.plugins."console_scripts"]
|
|
"manim" = "manim.__main__:main"
|
|
"manimce" = "manim.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools","poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|