pyproject.toml 299 B

1234567891011121314151617181920212223
  1. [tool.black]
  2. line-length = 80
  3. target-version = ['py37', 'py38', 'py39', 'py310']
  4. exclude = '''
  5. (
  6. /(
  7. \.eggs
  8. | \.git
  9. | \.github
  10. | \.hg
  11. | \.mypy_cache
  12. | \.tox
  13. | \.venv
  14. | _build
  15. | build
  16. | ci
  17. | dist
  18. | migrations
  19. | testproject
  20. | venv
  21. )/
  22. )
  23. '''