pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 20 Oct 2021 10:25:51 +0200
changeset 48306 1421c75b20de
parent 47881 58fe6d127a01
permissions -rw-r--r--
fsmonitor: fix traceback after removal of nonnormalset (issue6600) This basically does the same thing it used to do, but in the only place it's needed. Differential Revision: https://phab.mercurial-scm.org/D11707

[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