pyproject.toml 341 B

12345678910111213141516
  1. [build-system]
  2. requires = ["setuptools >= 30.3.0", "wheel"]
  3. [tool.black]
  4. target-version = ["py38", "py39"]
  5. line-length = 80
  6. [tool.isort]
  7. multi_line_output = 3
  8. include_trailing_comma = true
  9. force_grid_wrap = 0
  10. use_parentheses = true
  11. line_length = 88
  12. known_tests = "tests"
  13. sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,TESTS,LOCALFOLDER"