pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Fri, 15 Apr 2022 22:02:07 +0200
changeset 49191 4450faeb52bb
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
rust: make requirements public These can be used by any client crates (including `rhg`), no need to make them private to the crate. Differential Revision: https://phab.mercurial-scm.org/D12610

[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