forked from bigbluebutton/bbb-presentation-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 771 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (29 loc) · 771 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
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: LGPL-3.0-or-later
[build-system]
requires = ["setuptools >= 45.2", "setuptools_scm[toml] >= 3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.black]
target-version = ["py310"]
[tool.isort]
py_version = "310"
profile = "black"
[tool.mypy]
python_version = "3.10"
strict = true
files = "."
mypy_path = "$MYPY_CONFIG_FILE_DIR/typings"
[[tool.mypy.overrides]]
module = "sortedcollections"
ignore_missing_imports = true
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = [
"--import-mode=importlib"
]
filterwarnings = [
"ignore:Using or importing the ABCs:DeprecationWarning:sortedcollections"
]