setup.cfg 451 Bytes
Newer Older
1
2
3
4
[bdist_wheel]
universal=1

[aliases]
Kai Chen's avatar
Kai Chen committed
5
6
7
test=pytest

[tool:pytest]
Kai Chen's avatar
Kai Chen committed
8
9
10
11
12
13
14
15
16
17
addopts=tests/

[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
Kai Chen's avatar
Kai Chen committed
18
known_standard_library = setuptools
Kai Chen's avatar
Kai Chen committed
19
20
21
22
known_first_party = mmcv
known_third_party = addict,cv2,matplotlib,numpy,requests,six,torch,yaml
no_lines_before = STDLIB,LOCALFOLDER
default_section = THIRDPARTY