pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Sat, 19 Feb 2022 22:14:41 -0700
changeset 48849 ec6a4021beb1
parent 48004 58fe6d127a01
permissions -rw-r--r--
packaging: remove requirements constraints to support Python 2 We just deleted support for Python 2 from the packaging code. We no longer need these package constraints in the requirements file to support Python 2. Differential Revision: https://phab.mercurial-scm.org/D12267

[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