forked from toolsforexperiments/labcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 765 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
37
38
39
[build-system]
requires = [
"setuptools >= 48",
"wheel >= 0.29.0",
"versioningit >= 1.1.0"
]
build-backend = 'setuptools.build_meta'
[tool.mypy]
strict_optional = true
show_column_numbers = true
warn_unused_ignores = true
warn_unused_configs = true
warn_redundant_casts = true
no_implicit_optional = true
disallow_untyped_defs = true
plugins = "numpy.typing.mypy_plugin"
show_error_codes = true
enable_error_code = "ignore-without-code"
[[tool.mypy.overrides]]
module = [
"h5py",
"lmfit",
"matplotlib.*",
"pyqtgraph.*",
"xhistogram.*",
"ruamel.*",
"param.*",
"holoviews.*",
"hvplot.*",
"bokeh.*",
"setuptools.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["test"]
log_cli = true