pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 06 Jan 2022 17:15:49 +0100
changeset 48677 c95ace94f3ad
parent 47881 58fe6d127a01
child 52033 d4b275587847
permissions -rw-r--r--
test: do not use `which` to find an exec path in the test Posix is deprecated `which` in favor of `command -v`… which does not provide the same feature. Debian is warning about this deprecation and this get annoying. Differential Revision: https://phab.mercurial-scm.org/D11983

[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