pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 16 Dec 2022 22:07:02 -0500
changeset 49817 2b1476714849
parent 48004 58fe6d127a01
permissions -rw-r--r--
typing: add trivial type hints to rest of the windows platform module Skipping the file wrappers for now because there's interplay with C code, and making them subclass `typing.BinaryIO_Proxy` confuses PyCharm a bit.

[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