pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 12 Jun 2023 10:50:00 +0200
branchstable
changeset 50667 e7a3611181aa
parent 48004 58fe6d127a01
permissions -rw-r--r--
test-dirstate-version-fallback: future-proof the test for a different default Dirstate-v2 will become the default at some point, which would cause this test to fail. Let's save someone else the headache later.

[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