-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 718 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 718 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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.black]
target-version = ['py311', 'py312', 'py313', 'py314']
include = '\.pyi?$'
[tool.codespell]
ignore-words = ".codespell-ignore.txt"
skip = "docs/_build/*,*.dat"
[tool.coverage.run]
source = ["pterasoftware"]
[tool.docformatter]
black = true
recursive = true
force-wrap = true
[tool.octowrap]
line-length = 88
recursive = true
inline = true
list-wrap = true
diff-only = false
diff-base = "HEAD"
todo-case-sensitive = true
todo-multiline = true
extend-exclude = ["private", ".venv-wsl", "experimental"]
todo-patterns = ["TODO:", "FIXME:"]
extend-todo-patterns = ["TEST:"]