Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.cfg 611 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  1. [isort]
  2. line_length = 100
  3. multi_line_output = 3
  4. balanced_wrapping = True
  5. known_standard_library = setuptools
  6. known_third_party = tqdm,loguru,tabulate
  7. known_data_processing = cv2,numpy,scipy,PIL,matplotlib
  8. known_datasets = pycocotools
  9. known_deeplearning = torch,torchvision,caffe2,onnx,apex,timm,thop,torch2trt,tensorrt,openvino,onnxruntime
  10. known_myself = yolox
  11. sections = FUTURE,STDLIB,THIRDPARTY,data_processing,datasets,deeplearning,myself,FIRSTPARTY,LOCALFOLDER
  12. no_lines_before=STDLIB,THIRDPARTY,datasets
  13. default_section = FIRSTPARTY
  14. [flake8]
  15. max-line-length = 100
  16. max-complexity = 18
  17. exclude = __init__.py
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...