pyproject.toml 551 B

1234567891011121314151617181920212223242526272829
  1. [project]
  2. name = "manga-image-translator"
  3. version = "0.1.0"
  4. description = ""
  5. authors = []
  6. readme = "README.md"
  7. requires-python = ">=3.10 <3.12"
  8. license = "LICENSE"
  9. [tool.isort]
  10. profile = 'black'
  11. multi_line_output = 3
  12. line_length = 100
  13. py_version = 310
  14. [tool.pylint]
  15. disable = """
  16. C,R,W,
  17. c-extension-no-member
  18. """
  19. additional-builtins = "display"
  20. output-format = "colorized"
  21. generated-members = ["torch.*", "cv2.*"]
  22. [tool.pytest.ini_options]
  23. addopts = "-ra -v -p no:faulthandler"
  24. minversion = "6.0"
  25. testpaths = ["test"]