summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 3913374c60040919ae5d765be897a44e660db2f1 (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
[build-system]
requires = [
  "setuptools >= 30.3.0",
  "wheel",
  "setuptools_scm",
  "setuptools_scm_git_archive",
  "pybind11 >= 2.3.0, < 3"
]
build-backend = "setuptools.build_meta"

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