pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Thu, 22 Jul 2021 17:31:37 +0200
changeset 48234 7e78c72ee3ea
parent 47881 58fe6d127a01
permissions -rw-r--r--
dirstate-v2: Initial Python serializer This adds code seralizing a `map` and `copy_map` dicts into dirstate-v2 file formate. This is not used yet. Differential Revision: https://phab.mercurial-scm.org/D11519

[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