pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Fri, 18 Mar 2022 17:39:06 +0100
changeset 48972 6b31c0676147
parent 48004 58fe6d127a01
permissions -rw-r--r--
rhg: add support for ignoring all extensions Some workflows just want what `rhg` does and don't care about any extensions, this makes it easier. Differential Revision: https://phab.mercurial-scm.org/D12385

[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