pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 18 Apr 2023 17:17:31 +0200
branchstable
changeset 50436 2a6949ab9d23
parent 48004 58fe6d127a01
permissions -rw-r--r--
delta-find: add a simple safeguard to prevent bad non-general-delta This make it easier to catch request to build delta that does not make sense in the general delta world. It seems better to raise a programming error than to corrupt the repository.

[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