pip/pyproject.toml

21 lines
919 B
TOML
Raw Normal View History

2017-05-20 09:40:43 +02:00
[build-system]
requires = ["setuptools", "wheel"]
2017-03-19 01:50:01 +01:00
[tool.towncrier]
package = "pip"
2018-03-31 17:20:57 +02:00
package_dir = "src"
2017-03-19 01:50:01 +01:00
filename = "NEWS.rst"
directory = "news/"
2018-04-22 19:43:10 +02:00
title_format = "{version} ({project_date})"
issue_format = "`#{issue} <https://github.com/pypa/pip/issues/{issue}>`_"
2019-09-17 02:52:46 +02:00
template = "tools/automation/news/template.rst"
type = [
{ name = "Process", directory = "process", showcontent = true },
{ name = "Deprecations and Removals", directory = "removal", showcontent = true },
{ name = "Features", directory = "feature", showcontent = true },
{ name = "Bug Fixes", directory = "bugfix", showcontent = true },
{ name = "Vendored Libraries", directory = "vendor", showcontent = true },
{ name = "Improved Documentation", directory = "doc", showcontent = true },
{ name = "Trivial Changes", directory = "trivial", showcontent = false },
]