pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Thu, 02 Nov 2023 15:50:13 +0100
changeset 51250 a8ca22119385
parent 48004 58fe6d127a01
permissions -rw-r--r--
rust-index: add support for `del index[r]` Only the `del index[r:]` syntax was supported, but the comment said otherwise. It's not actually used in core code, but the C index supports it.

[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