pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 31 Jan 2022 18:38:15 +0100
changeset 48699 21ac6aedd5e5
parent 47881 58fe6d127a01
child 52033 d4b275587847
permissions -rw-r--r--
transaction: do not rely on a global variable to post_finalize file We can just add a new argument to the `addfilegenerator` function. This is more explicit and therefor clearer and less error prone. Differential Revision: https://phab.mercurial-scm.org/D12125

[build-system]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true