Generate a Python package project using the Python Cookiecutter package
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516171819202122232425
  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. '''