blob: 052d1b6610c8341d2655a4b0c90c5a5810c1243a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[build-system]
requires = ["setuptools>=58", "setuptools-scm>=6"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
known_first_party = ["tox", "tests"]
[tool.setuptools_scm]
write_to = "src/tox/version.py"
[tool.towncrier]
name = "tox"
filename = "docs/changelog.rst"
directory = "docs/changelog"
title_format = false
issue_format = "`#{issue} <https://github.com/tox-dev/tox/issues/{issue}>`_"
template = "docs/changelog/template.jinja2"
# possible types, all default: feature, bugfix, doc, removal, misc
|