-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (56 loc) · 1.14 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
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 120
exclude = [ ".git", "__pycache__", "build", "dist", "venv", ".venv", ".mypy_cache", ".tox",]
extend-ignore = [ "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "E203", "W503"]
[tool.isort]
profile = "black"
line_length = 120
skip = [
"venv",
".venv",
".git",
"__pycache__",
"build",
"dist",
]
known_first_party = "src"
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"yaml.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
markers = [
"unit: mark a test as a unit test.",
"integration: mark test as an integration test.",
"e2e: mark test as an end to end test.",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"