summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: a1a12f8382edb06c07212cb2eb2e17d227652727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
requires-python = ">=3.6"

[build-system]
requires = [
  "setuptools >= 50",
  "wheel >= 0.35",
  "setuptools_scm[toml] >= 4.1",
  "setuptools_scm_git_archive",
  "pybind11 >= 2.6.0, < 3"
]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 88
target-version = ["py36", "py37", "py38"]
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
    \.eggs
  | \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | buck-out
  | build
  | dist
  | docs
  | misc
  | \.egg-info
)/
'''