-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
91 lines (87 loc) · 1.82 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
name = ""
description = ""
authors = [{name = "name", email = "email"}]
license = "BSD-3-Clause"
dynamic = ["version"]
dependencies = [
"Pacti @ git+https://github.com/pacti-org/pacti.git@8892ecb",
"ipykernel>=6.22.0",
"notebook>=6.5.3",
"ipdb>=0.13.13",
"ffmpeg>=1.4",
]
requires-python = ">=3.8, <=3.11.1"
[tool.pdm.dev-dependencies]
duty = ["duty>=0.7"]
docs = [
"mkdocs>=1.3",
"mkdocs-jupyter>=0.22,<0.23",
"mkdocs-coverage>=0.2",
"mkdocs-gen-files>=0.3",
"mkdocs-literate-nav>=0.4",
"mkdocs-material>=8.1",
"mkdocs-section-index>=0.3",
"mkdocs-video>=1.3.0",
"mkdocstrings[python]>=0.18",
"markdown-callouts>=0.2",
"markdown-exec>=0.5",
"toml>=0.10",
]
format = [
"autoflake>=1.4",
"black>=21.10b0",
"isort>=5.10",
]
maintain = [
"git-changelog>=0.4",
"urlopen>=1.0.0",
]
quality = [
"darglint>=1.8",
"flake8>=5.0.0",
"flake8-bandit",
"flake8-black",
"flake8-bugbear",
"flake8-builtins",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-pytest-style",
"flake8-string-format",
"flake8-tidy-imports",
"flake8-variables-names",
"pep8-naming",
"wps-light",
"nbqa>=1.6.3",
]
tests = [
"pytest>=6.2",
"pytest-cov>=3.0",
"pytest-randomly>=3.10",
"pytest-xdist>=2.4",
]
typing = [
"mypy>=0.910",
"types-markdown>=3.3",
"types-toml>=0.10",
]
security = ["safety>=2"]
dev = [
"certifi>=2022.9.24",
"tox>=4.4.7",
]
[tool.black]
line-length = 120
exclude = "tests/fixtures"
[tool.isort]
line_length = 120
not_skip = "__init__.py"
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = "THIRDPARTY"
known_first_party = "pacti"
include_trailing_comma = true