2018-08-27 02:12:31 +08:00
|
|
|
[bdist_wheel]
|
|
|
|
universal=1
|
|
|
|
|
|
|
|
[aliases]
|
2018-10-08 21:28:14 +08:00
|
|
|
test=pytest
|
|
|
|
|
2019-07-30 23:15:56 +08:00
|
|
|
[yapf]
|
|
|
|
based_on_style = pep8
|
|
|
|
blank_line_before_nested_class_or_def = true
|
|
|
|
split_before_expression_after_opening_paren = true
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
line_length = 79
|
|
|
|
multi_line_output = 0
|
2022-02-09 21:29:21 +08:00
|
|
|
extra_standard_library = pkg_resources,setuptools,logging,os,warnings,abc
|
2019-07-30 23:15:56 +08:00
|
|
|
known_first_party = mmcv
|
2022-05-05 12:29:03 +08:00
|
|
|
known_third_party = addict,cv2,matplotlib,numpy,onnx,onnxruntime,packaging,pytest,pytorch_sphinx_theme,scipy,sphinx,tensorrt,torch,torchvision,yaml,yapf
|
2019-07-30 23:15:56 +08:00
|
|
|
no_lines_before = STDLIB,LOCALFOLDER
|
2019-12-12 21:40:42 +08:00
|
|
|
default_section = THIRDPARTY
|
2021-10-04 20:13:54 +08:00
|
|
|
|
2022-05-16 20:47:56 +08:00
|
|
|
# ignore-words-list needs to be lowercase format. For example, if we want to
|
|
|
|
# ignore word "BA", then we need to append "ba" to ignore-words-list rather
|
|
|
|
# than "BA"
|
2021-10-04 20:13:54 +08:00
|
|
|
[codespell]
|
2022-05-16 20:47:56 +08:00
|
|
|
quiet-level = 3
|
2022-11-15 10:23:17 +08:00
|
|
|
ignore-words-list = inout,hist,ba,inh,ro,tne,warmup,warpped,warpping,cann
|