forked from pypa/virtualenv
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (24 loc) · 795 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = [
"setuptools >= 41.0.0",
"wheel >= 0.30.0",
"setuptools_scm[toml]>=3.4",
]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
write_to = "src/virtualenv/version.py"
write_to_template = """
\"\"\" Version information \"\"\"
__version__ = "{version}"
"""
[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"
# possible types, all default: feature, bugfix, doc, removal, misc