pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Sun, 20 Feb 2022 16:09:02 -0700
changeset 48912 b0dd39b91e7a
parent 47881 58fe6d127a01
permissions -rw-r--r--
cext: remove PY23() Since we always run on Python 3 now, we no longer need this macro to support Python 2. We refactor all users to just use the 2nd argument. Differential Revision: https://phab.mercurial-scm.org/D12232

[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