forked from digital-chemistry-laboratory/morfeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.08 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
branch = true
omit = ["*/site-packages/*"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"
multi_line_output = 3
force_sort_within_sections = true
order_by_type = false
group_by_package = true
lexicographical = true
[tool.mypy]
allow_redefinition = true
check_untyped_defs = true
disallow_untyped_calls = true
disallow_subclassing_any = true
follow_imports = "silent"
ignore_missing_imports = true
implicit_reexport = false
strict_equality = true
no_implicit_optional = true
local_partial_types = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unreachable = true
show_traceback = true
plugins = "numpy.typing.mypy_plugin"
[[tool.mypy.overrides]]
module = ["pyvista", "pyvistaqt"]
follow_imports = "skip"
[tool.pytest.ini_options]
addopts = "-m 'not (benchmark or xtb)'"
markers = [
"benchmark: mark a test as method benchmark",
"xtb: mark a test as requiring the xtb-python dependency",
]