-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 652 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 652 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
40
41
# Build system
[build-system]
requires = [
"setuptools>=45",
"wheel"
]
build-backend = "setuptools.build_meta"
# Tools
[tool.pytest.ini_options]
addopts = "-v"
xfail_strict = true
testpaths = ["tests"]
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310']
[tool.unimport]
remove = true
include_start_import = true
ignore_init = true
[tool.docformatter]
recursive = true
wrap-summaries = 79
wrap-descriptions = 79
blank = true
[tool.mypy]
warn_unused_configs = true
no_strict_optional = true
ignore_missing_imports = true
show_error_codes = true