setup.cfg 631 B

123456789101112131415161718192021
  1. [bdist_wheel]
  2. universal=1
  3. [aliases]
  4. test=pytest
  5. [yapf]
  6. based_on_style = pep8
  7. blank_line_before_nested_class_or_def = true
  8. split_before_expression_after_opening_paren = true
  9. split_penalty_import_names=0
  10. SPLIT_PENALTY_AFTER_OPENING_BRACKET=800
  11. [isort]
  12. line_length = 79
  13. multi_line_output = 0
  14. extra_standard_library = pkg_resources,setuptools
  15. known_first_party = mmpose
  16. known_third_party = PIL,cv2,h5py,json_tricks,matplotlib,mmcv,munkres,numpy,pytest,pytorch_sphinx_theme,requests,scipy,seaborn,spacepy,titlecase,torch,torchvision,webcam_apis,xmltodict,xtcocotools
  17. no_lines_before = STDLIB,LOCALFOLDER
  18. default_section = THIRDPARTY