a | b/setup.cfg | ||
---|---|---|---|
1 | [bdist_wheel] |
||
2 | universal=1 |
||
3 | |||
4 | [aliases] |
||
5 | test=pytest |
||
6 | |||
7 | [tool:pytest] |
||
8 | addopts=tests/ |
||
9 | |||
10 | [yapf] |
||
11 | based_on_style = pep8 |
||
12 | blank_line_before_nested_class_or_def = true |
||
13 | split_before_expression_after_opening_paren = true |
||
14 | split_penalty_import_names=0 |
||
15 | SPLIT_PENALTY_AFTER_OPENING_BRACKET=800 |
||
16 | |||
17 | [isort] |
||
18 | line_length = 79 |
||
19 | multi_line_output = 0 |
||
20 | known_standard_library = pkg_resources,setuptools |
||
21 | known_first_party = mmaction |
||
22 | known_third_party = cv2,decord,einops,joblib,matplotlib,mmcv,numpy,pandas,pytest,pytorch_sphinx_theme,scipy,seaborn,titlecase,torch,webcolors |
||
23 | no_lines_before = STDLIB,LOCALFOLDER |
||
24 | default_section = THIRDPARTY |