pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 13 Jul 2021 13:06:50 +0200
changeset 47665 a4443f66be6a
parent 46454 d4c8b4b90ecb
child 46520 5be886200eb6
child 47881 58fe6d127a01
permissions -rw-r--r--
dirstate-item: add a `from_v1_data` constructor This class method is dedicated to building a DirstateItem from the data available in the "dirstate-v1" format. Since that format is frozen, this constructor will never change (unlike the `__init__` one). Differential Revision: https://phab.mercurial-scm.org/D11118

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true