pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Feb 2022 12:36:57 -0700
changeset 49030 37537a4d2695
parent 47881 58fe6d127a01
permissions -rw-r--r--
statprof: remove superfluous sys.version_info check Always true since we require Python 3 now. Differential Revision: https://phab.mercurial-scm.org/D12345

[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