pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 28 Mar 2022 13:00:14 +0200
changeset 49041 8309c83b6e2c
parent 48004 58fe6d127a01
permissions -rw-r--r--
test-issue660: test inside a repository, not the test dir This causes an issue with a temporary file showing up in test output when adding a dirstate-v2 variant of this test. Differential Revision: https://phab.mercurial-scm.org/D12444

[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