-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["htmlcov"]
[project]
name = "pyzfn"
version = "0.1.16"
description = "micromagnetic post processing library"
authors = [
{ name = "Mathieu Moalic", email = "[email protected]" },
{ name = "Mateusz Zelent", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cmocean>=3.0,<4.0",
"ipympl>=0.9,<1.0",
"ipytree>=0.2,<1.0",
"matplotlib>=3.6,<4.0",
"numpy>=1.23,<2.0",
"psutil>=5.9,<6.0",
"tqdm>=4.64,<5.0",
"zarr>=2.13,<3.0",
"pyfftw>=0.13,<1.0",
"nptyping>=2.4,<3.0",
"matplotx>=0.3,<1.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
]
[tool.pytest.ini_options]
addopts = "-v -p no:warnings --cov=pyzfn --cov-report=html --doctest-modules "
testpaths = ["tests"]
[tool.mypy]
disable_error_code = "unused-ignore"
mypy_path = "pyzfn"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true
disallow_untyped_calls = false
strict = true
plugins = "numpy.typing.mypy_plugin"
[tool.pyright]
reportOptionalMemberAccess = false