pyproject.toml 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [build-system]
  2. requires = ["setuptools", "wheel"]
  3. [tool.towncrier]
  4. package = "pip"
  5. package_dir = "src"
  6. filename = "NEWS.rst"
  7. directory = "news/"
  8. title_format = "{version} ({project_date})"
  9. issue_format = "`#{issue} <https://github.com/pypa/pip/issues/{issue}>`_"
  10. template = "news/_template.rst"
  11. [[tool.towncrier.type]]
  12. directory = "process"
  13. name = "Process"
  14. showcontent = true
  15. [[tool.towncrier.type]]
  16. directory = "removal"
  17. name = "Deprecations and Removals"
  18. showcontent = true
  19. [[tool.towncrier.type]]
  20. directory = "feature"
  21. name = "Features"
  22. showcontent = true
  23. [[tool.towncrier.type]]
  24. directory = "bugfix"
  25. name = "Bug Fixes"
  26. showcontent = true
  27. [[tool.towncrier.type]]
  28. directory = "vendor"
  29. name = "Vendored Libraries"
  30. showcontent = true
  31. [[tool.towncrier.type]]
  32. directory = "doc"
  33. name = "Improved Documentation"
  34. showcontent = true
  35. [[tool.towncrier.type]]
  36. directory = "trivial"
  37. name = "Trivial Changes"
  38. showcontent = false