Generate a Python package project using the Python Cookiecutter package
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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