setup.cfg 767 B

1234567891011121314151617181920212223
  1. [isort]
  2. line_length=100
  3. multi_line_output=4
  4. known_standard_library=numpy,setuptools
  5. known_myself=slowfast
  6. known_third_party=fvcore,iopath,av,torch,pycocotools,yacs,termcolor,scipy,simplejson,matplotlib,detectron2,torchvision,yaml,tqdm,psutil,opencv-python,pandas,tensorboard,moviepy,sklearn,cv2,PIL
  7. no_lines_before=STDLIB,THIRDPARTY
  8. sections=FUTURE,STDLIB,THIRDPARTY,myself,FIRSTPARTY,LOCALFOLDER
  9. default_section=FIRSTPARTY
  10. [mypy]
  11. python_version=3.6
  12. ignore_missing_imports = True
  13. warn_unused_configs = True
  14. disallow_untyped_defs = True
  15. check_untyped_defs = True
  16. warn_unused_ignores = True
  17. warn_redundant_casts = True
  18. show_column_numbers = True
  19. follow_imports = silent
  20. allow_redefinition = True
  21. ; Require all functions to be annotated
  22. disallow_incomplete_defs = True