pyproject.toml 333 B

123456789101112131415161718
  1. [build-system]
  2. requires = [
  3. "setuptools>=42",
  4. "wheel"
  5. ]
  6. build-backend = "setuptools.build_meta"
  7. [tool.black]
  8. line-length = 120
  9. required-version = "22.3.0"
  10. [tool.isort]
  11. profile = "black"
  12. line_length = 120
  13. combine_as_imports = true
  14. combine_star = true
  15. known_local_folder = ["tests", "cli"]
  16. known_first_party = ["test_utils"]