pyproject.toml
author Sushil khanchi <sushilkhanchi97@gmail.com>
Wed, 06 Oct 2021 13:32:07 +0530
changeset 48185 1d70fb83ff4a
parent 47881 58fe6d127a01
permissions -rw-r--r--
hg: let extensions call the func without populating opts keys This change is to help extensions by not forcing them to populate with opts[b'bundle'] and opts[b'force'] when calling hg.incoming(...) Differential Revision: https://phab.mercurial-scm.org/D11619

[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