pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Wed, 23 Mar 2022 13:51:40 -0400
changeset 48986 d500df2e8034
parent 48004 58fe6d127a01
permissions -rw-r--r--
pytype: disable a few errors about Windows specific module attributes These were flagged by pytype 2022.03.21. Differential Revision: https://phab.mercurial-scm.org/D12401

[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