forked from swelborn/tomopyui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 729 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 729 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
[build-system]
requires = ["setuptools>=45", "wheel"]
[tool.isort]
profile = "black"
src_paths = "tomopyui"
multi_line_output = 3
[tool.pydocstyle]
match_dir = "tomopyui"
convention = "numpy"
add_select = ["D402","D415","D417"]
[tool.pytest.ini_options]
testpaths = ["docs/examples", "tests"]
addopts = [
"--current-env",
"--doctest-continue-on-failure",
"--doctest-modules",
"--ignore-glob=docs/examples/*.py",
"--mpl",
"--nbval",
]
[tool.mypy]
files = "tomopyui"
warn_unused_configs = true
warn_unused_ignores = true
check_untyped_defs = true
implicit_reexport = false
# this is strict!
# disallow_untyped_defs = true
show_column_numbers = true
show_error_codes = true
ignore_missing_imports = true