pyproject.toml
author Georges Racinet <georges.racinet@octobus.net>
Sat, 30 Sep 2023 16:52:40 +0200
changeset 51214 050098d60c30
parent 48004 58fe6d127a01
permissions -rw-r--r--
rust-index: variant of assert_py_eq with normalizer expression The example given in doc-comment is the main use case: some methods may require ordering insensitive comparison. This is about to be used for `reachableroots2`

[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