1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
[build-system]
requires = [
"setuptools>=59.6",
"setuptools-scm>=6.4.2",
]
build-backend = 'setuptools.build_meta'
[tool.black]
line-length = 120
[tool.towncrier]
package = "virtualenv"
package_dir = "" # we purposfully do not set this as src, forcing import from site-package that has version.py
filename = "docs/changelog.rst"
directory = "docs/changelog"
title_format = false
issue_format = "`#{issue} <https://github.com/pypa/virtualenv/issues/{issue}>`_"
template = "docs/changelog/template.jinja2"
|