view pyproject.toml @ 47200:3e18a29deec9

pyoxidizer: remove some boilerplate in file This isn't used for anything and can safely be removed. Differential Revision: https://phab.mercurial-scm.org/D10678
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 06 May 2021 16:00:44 -0700
parents d4c8b4b90ecb
children 5be886200eb6 58fe6d127a01
line wrap: on
line source

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true