Generate a Python package project using the Python Cookiecutter package
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
473B

  1. # NOTE: you have to use single-quoted strings in TOML for regular expressions.
  2. # It's the equivalent of r-strings in Python. Multiline strings are treated as
  3. # verbose regular expressions by Black. Use [ ] to denote a significant space
  4. # character.
  5. [tool.black]
  6. line-length = 88
  7. include = '\.pyi?$'
  8. exclude = '''
  9. /(
  10. \.eggs
  11. | \.git
  12. | \.hg
  13. | \.mypy_cache
  14. | \.tox
  15. | \.venv
  16. | _build
  17. | buck-out
  18. | build
  19. | dist
  20. | tests/fixtures
  21. | docs/source
  22. )/
  23. '''