pyproject.toml
author Pierre-Yves DAVID <pierre-yves.david@octobus.net>
Sat, 04 Jun 2022 19:04:01 +0200
changeset 49461 ebbaf6a77807
parent 48004 58fe6d127a01
permissions -rw-r--r--
compare-disco: add an option to skip the case If we already know the context, we can save a lot of display space by skipping the case. This also open the way to speedup to the way we specify the subsets. (the code is hacky, but this is a quicky and dirty debug script)

[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