forked from python-windrose/windrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 820 Bytes
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=41.2",
"setuptools-scm",
"wheel",
]
[tool.ruff]
target-version = "py38"
line-length = 79
lint.select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"F", # flakes
"I", # import sorting
"T20", # flake8-print
"UP", # upgrade
]
lint.per-file-ignores."docs/conf.py" = [
"A001",
]
lint.per-file-ignores."samples/example_by.py" = [
"T201",
]
lint.per-file-ignores."samples/example_pdf_by.py" = [
"T201",
]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 70
exclude = [
"setup.py",
"docs",
"tests",
]
verbose = 1
quiet = false
color = true