pyproject.toml
author Sevan Janiyan <venture37@geeklan.co.uk>
Fri, 14 Apr 2023 19:59:44 +0100
changeset 50421 a0e39f5bb7cd
parent 48004 58fe6d127a01
permissions -rw-r--r--
sha1dc: Make sure SHA1DC_BIGENDIAN is set on Darwin/PowerPC __BYTE_ORDER__ is not defined on old toolchains so sha1dc gets built in little endian mode on a big endian platform, hilarity ensues. Tested on Mac OS X Tiger 10.4.

[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