pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 18 Mar 2024 11:25:21 +0100
branchstable
changeset 51509 e7bbeaa4f0a7
parent 48004 58fe6d127a01
permissions -rw-r--r--
delta-search: fix crash caused by unbound variable This code path was apparently not tested. This fixes a crash when cloning the Tryton repo.

[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