pyproject.toml
author Manuel Jacob <me@manueljacob.de>
Fri, 02 Feb 2024 04:46:54 +0100
changeset 51374 54a75576287a
parent 48004 58fe6d127a01
permissions -rw-r--r--
hghave: add py312 and py313 While not required in the core test suite in the moment, these could be useful in the future or for extensions. For example, Python 3.12 removed distutils and it might make sense to differentiate based on that.

[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