-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (40 loc) · 865 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
48
49
50
[project]
name = 'HEAD'
description = 'HEtero-Assists Distillation for Heterogeneous Object Detectors'
readme = 'README.md'
[project.license]
file = 'LICENSE'
[[project.authors]]
name = 'Luting Wang'
email = '[email protected]'
[project.urls]
Homepage = 'https://github.com/LutingWang/HEAD'
[tool.yapf]
allow_split_before_dict_value = false
coalesce_brackets = true
dedent_closing_brackets = true
split_arguments_when_comma_terminated = true
split_complex_comprehension = true
split_before_arithmetic_operator = true
[tool.isort]
profile = 'hug'
src_paths = [
'head',
]
line_length = 79
multi_line_output = 3
[tool.pydocstyle]
convention = 'google'
[tool.mypy]
files = [
'head',
]
[[tool.mypy.overrides]]
module = [
'mmcv.*',
'mmdet.*',
'todd.*',
]
ignore_missing_imports = true
[tool.commitizen]
name = 'cz_conventional_commits'