-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.22 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
[project]
name = "lufsplot"
authors = [ { name = "TDV Alinsa", email = "[email protected]" } ]
description = "Plot an audio input's BS.1770 loudness over time"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
[tool.mypy]
python_version = 3.9
mypy_path = "typings"
exclude = "^(tests/|conftest\\.py|outputs/|typings/|out/)"
# follow_imports = "silent"
# ignore_missing_imports = true
namespace_packages = true
warn_unused_configs = true
strict_optional = true
disallow_subclassing_any = false
disallow_any_generics = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
warn_no_return = true
[[tool.mypy.overrides]]
module = [ "matplotlib.*" ]
ignore_missing_imports = true
[tool.isort]
sections = [
"FUTURE",
"STDLIB",
"FIRSTPARTY",
"THIRDPARTY",
"LOCALFOLDER",
]