summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 2dc65758360f0bf608a54f3c557474731307f92b (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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]

[tool.black]
skip-string-normalization = true
line-length = 127
include = '\.pyi?$'
exclude = '''
/(
    \.eggs
  | \.git
  | \.github
  | \.idea
  | \.mypy_cache
  | \.pytest_cache
  | \.tox
  | \.venv
  | \.vscode
  | _build
  | build
  | cmd2.egg-info
  | cmd2_history.dat
  | dist
  | htmlcov
)/
'''