pyproject.toml
author Anton Shestakov <av6@dwimlabs.net>
Fri, 27 May 2022 14:37:12 +0400
changeset 49236 e5e3a340b965
parent 48004 58fe6d127a01
permissions -rw-r--r--
tests: remove hg10 requirement from test-check-pylint.t Since pylint does its own directory traversal to find files to check and doesn't use hg locate command, this requirement is not valid. See also a29f071751df.

[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