pyproject.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [build-system]
  2. requires = [
  3. # sync with setup.py until we discard non-pep-517/518
  4. "setuptools>=40.0",
  5. "setuptools-scm",
  6. "wheel",
  7. ]
  8. build-backend = "setuptools.build_meta"
  9. [tool.towncrier]
  10. package = "pytest"
  11. package_dir = "src"
  12. filename = "CHANGELOG.rst"
  13. directory = "changelog/"
  14. title_format = "pytest {version} ({project_date})"
  15. template = "changelog/_template.rst"
  16. [[tool.towncrier.type]]
  17. directory = "removal"
  18. name = "Removals"
  19. showcontent = true
  20. [[tool.towncrier.type]]
  21. directory = "deprecation"
  22. name = "Deprecations"
  23. showcontent = true
  24. [[tool.towncrier.type]]
  25. directory = "feature"
  26. name = "Features"
  27. showcontent = true
  28. [[tool.towncrier.type]]
  29. directory = "bugfix"
  30. name = "Bug Fixes"
  31. showcontent = true
  32. [[tool.towncrier.type]]
  33. directory = "vendor"
  34. name = "Vendored Libraries"
  35. showcontent = true
  36. [[tool.towncrier.type]]
  37. directory = "doc"
  38. name = "Improved Documentation"
  39. showcontent = true
  40. [[tool.towncrier.type]]
  41. directory = "trivial"
  42. name = "Trivial/Internal Changes"
  43. showcontent = true