summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: b3f9e6bccf54ac6c8a7541d0ce8bc30bcdf3087f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[build-system]
# Must be kept in sync with `setup_requirements` in `setup.py`
requires = [
    "setuptools>=40.8.0",
    "wheel",
    "cffi>=1.1; python_implementation != 'PyPy'",
]
# Point to the setuptools' PEP517 build backend explicitly to
# disable Pip's fallback guessing
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 79
target-version = ["py36"]