Revision 9b99f6adefd2e81e8639fd0ec696dd0402c4659e authored by Maria Khrustaleva on 09 January 2024, 11:17:09 UTC, committed by GitHub on 09 January 2024, 11:17:09 UTC
The distutils module is [deprecated](https://peps.python.org/pep-0632)
and will be removed from the standard library in Python 3.12.
1 parent 64d6d7a
Raw File
pyproject.toml
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.isort]
profile = "black"
forced_separate = ["tests"]
line_length = 100
skip_gitignore = true # align tool behavior with Black

# Can't just use a pyproject in the root dir, so duplicate
# https://github.com/psf/black/issues/2863
[tool.black]
line-length = 100
target-version = ['py38']
back to top