pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Thu, 03 Nov 2022 16:30:35 +0100
branchstable
changeset 49569 5318ac25dfdc
parent 48004 58fe6d127a01
permissions -rw-r--r--
rhg: add a config option to fall back immediately This is useful for debugging the behavior of the "default" `hg` in tests without having to manually substitute the fallback path.

[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