pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 26 Oct 2024 05:11:58 +0200
branchstable
changeset 52121 05bb54a3ef26
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
pycompat: filter more of the traceback in `test-flagproccessor.t` The traceback changes again with 3.13. So we filter it to only keeps the bits we care about. This is actually only reusing the approach from a few line below.

[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