-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 717 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 717 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
[build-system]
requires = ["setuptools>=58", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = [
"test"
]
norecursedirs = [
"libs",
"docs"
]
log_cli = true
[tool.pydocstyle]
convention = "numpy"
# TODO: Work on removing these ignores
add-ignore = [
"D100", # Missing docstrings in modules
"D101", # Missing docstrings in classes
"D102", # Missing docstrings in methods
"D103", # Missing docstrings in functions
"D104", # Missing docstrings in packages
"D105", # Missing docstrings in magic methods
"D401", # Google convention
"D406", # Google convention
"D407" # Google convention
]