pyproject.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [tool.towncrier]
  2. package = "synapse"
  3. filename = "CHANGES.md"
  4. directory = "changelog.d"
  5. issue_format = "[\\#{issue}](https://github.com/matrix-org/synapse/issues/{issue})"
  6. [[tool.towncrier.type]]
  7. directory = "feature"
  8. name = "Features"
  9. showcontent = true
  10. [[tool.towncrier.type]]
  11. directory = "bugfix"
  12. name = "Bugfixes"
  13. showcontent = true
  14. [[tool.towncrier.type]]
  15. directory = "doc"
  16. name = "Improved Documentation"
  17. showcontent = true
  18. [[tool.towncrier.type]]
  19. directory = "removal"
  20. name = "Deprecations and Removals"
  21. showcontent = true
  22. [[tool.towncrier.type]]
  23. directory = "misc"
  24. name = "Internal Changes"
  25. showcontent = true
  26. [tool.black]
  27. target-version = ['py34']
  28. exclude = '''
  29. (
  30. /(
  31. \.eggs # exclude a few common directories in the
  32. | \.git # root of the project
  33. | \.tox
  34. | \.venv
  35. | \.env
  36. | env
  37. | _build
  38. | _trial_temp.*
  39. | build
  40. | dist
  41. | debian
  42. )/
  43. )
  44. '''