-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (41 loc) · 891 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 = 'OADP'
description = 'Object-Aware Distillation Pyramid for Open-Vocabulary Detection'
readme = 'README.md'
[project.license]
file = 'LICENSE'
[[project.authors]]
name = 'Luting Wang'
email = '[email protected]'
[project.urls]
Homepage = 'https://github.com/LutingWang/OADP'
[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 = [
'oadp',
'tools',
]
line_length = 79
multi_line_output = 3
known_third_party = [
'nni',
]
[tool.pydocstyle]
convention = 'google'
[tool.mypy]
files = [
'oadp',
'tools',
]
plugins = 'numpy.typing.mypy_plugin'
[tool.codespell]
write-changes = true
[tool.commitizen]
name = 'cz_conventional_commits'