setup.cfg 570 B

1234567891011121314151617181920212223
  1. [bdist_wheel]
  2. universal=1
  3. [metadata]
  4. license_files = LICENSE
  5. [pep8]
  6. max-line-length = 120
  7. [flake8]
  8. # note: we ignore all 501s (line too long) anyway as they're taken care of by black
  9. max-line-length = 120
  10. ignore = E203, E402, W503, W504, F821, E501, B, C4, EXE
  11. per-file-ignores =
  12. __init__.py: F401, F403, F405
  13. ./hubconf.py: F401
  14. torchvision/models/mobilenet.py: F401, F403
  15. torchvision/models/quantization/mobilenet.py: F401, F403
  16. test/smoke_test.py: F401
  17. exclude = venv
  18. [pydocstyle]
  19. select = D417 # Missing argument descriptions in the docstring