mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
20 lines
919 B
TOML
20 lines
919 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
[tool.towncrier]
|
|
package = "pip"
|
|
package_dir = "src"
|
|
filename = "NEWS.rst"
|
|
directory = "news/"
|
|
title_format = "{version} ({project_date})"
|
|
issue_format = "`#{issue} <https://github.com/pypa/pip/issues/{issue}>`_"
|
|
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 },
|
|
]
|