setup.cfg 486 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 = pkg_resources,setuptools
Kai Chen's avatar
Kai Chen committed
19
known_first_party = mmcv
20
known_third_party = Cython,addict,cv2,numpy,pytest,resnet_cifar,torch,torchvision,yaml,yapf
Kai Chen's avatar
Kai Chen committed
21
no_lines_before = STDLIB,LOCALFOLDER
Kai Chen's avatar
Kai Chen committed
22
default_section = THIRDPARTY