pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 06 May 2024 15:30:21 +0200
branchstable
changeset 51494 ccf5c44092db
parent 47881 58fe6d127a01
permissions -rw-r--r--
rust-cpython: don't swallow the dirstate error message In case we do get a dirstate error, we want to get the full error message and not just an opaque `Dirstate error`.

[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