forked from drageelr/manim-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
65 lines (57 loc) · 1.97 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "manim-data-structures"
version = "0.1.7"
description = "A Manim implementation of Data Structures"
authors = ["Nikhil Iyer <[email protected]>", "Hammad Nasir <[email protected]>"]
readme = "README.md"
packages = [{include = "manim_data_structures", from = "src"}]
repository = "https://github.com/ufosc/manim-data-structures"
documentation = "https://docs.manim.community/en/stable/"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
manim = ">=0.16.0"
[tool.poetry.group.dev.dependencies]
Sphinx = "^5.3.0"
sphinx-autodoc-typehints = "^1.22"
furo = "^2022.9.29"
recommonmark = "^0.7.1"
pre-commit = "^2.20.0"
isort = "5.12.0"
flake8 = {version = "6.0.0", python = ">=3.8.1,<3.13"}
flake8-builtins = "^2.0.1"
flake8-bugbear = "^22.10.27"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.3.0"
flake8-simplify = "^0.19.3"
flake8-comprehensions = "^3.10.1"
pytest = "^6.2.5"
pytest-cov = "^4.0.0"
matplotlib = "^3.9.2"
[tool.poetry.dev-dependencies.black]
version = ">=22.10.0"
allow-prereleases = false
python = ">=3.7"
markers = "platform_python_implementation == 'CPython'"
[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.poetry.urls]
"Bug Tracker" = "https://github.com/ufosc/manim-data-structures/issues"
"Changelog" = "https://github.com/ufosc/manim-data-structures/blob/main/CHANGELOG.md"
[tool.poetry.plugins]
[tool.poetry.plugins."console_scripts"]
"manim" = "manim.__main__:main"
"manimce" = "manim.__main__:main"
[tool.poetry.plugins."manim.plugins"]
"manim_data_structures" = "manim_data_structures"
[tool.pytest.ini_options]
markers = "slow: Mark the test as slow. Can be skipped with --skip_slow"
addopts = "--no-cov-on-fail --cov=src --cov-report html:cov_html --cov-report term"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"