summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 477d5e6732889d091f5bc1c1b5cc0261ad11f974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[build-system]
requires = [
    # The minimum setuptools version is specific to the PEP 517 backend,
    # and may be stricter than the version required in `setup.py`
    "setuptools>=40.6.0",
    "setuptools_scm[toml]>=3.4",
    "wheel",
]
build-backend = "setuptools.build_meta"

[tool.isort]
from_first = true
include_trailing_comma = true
multi_line_output = 3

[tool.setuptools_scm]