pyproject.toml
author Manuel Jacob <me@manueljacob.de>
Fri, 02 Feb 2024 04:03:15 +0100
changeset 51371 cf1bee12ecdb
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
import-checker: make stdlib path detection work in virtual environments The previous logic tried to find the directory containing BaseHTTPServer, which didn’t work as indended because it was only present on Python 2. Instead, the argparse module is used now.

[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