X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/489d00ed8f4fb90d5788609a474632ab5a16591f..d3cc63316b10c3ddc0e6a97a71130f30598ba5ef:/pyproject.toml diff --git a/pyproject.toml b/pyproject.toml index cbb530c..9d4da0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,11 +7,12 @@ [tool.black] line-length = 88 -py36 = true +target-version = ['py36', 'py37', 'py38'] include = '\.pyi?$' exclude = ''' /( - \.git + \.eggs + | \.git | \.hg | \.mypy_cache | \.tox @@ -24,5 +25,14 @@ exclude = ''' # The following are specific to Black, you probably don't want those. | blib2to3 | tests/data + | profiling )/ ''' + + +# Build system information below. +# NOTE: You don't need this in your own Black configuration. + +[build-system] +requires = ["setuptools>=41.0", "setuptools-scm", "wheel"] +build-backend = "setuptools.build_meta"