File: pyproject.toml

package info (click to toggle)
kamcli 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 812 kB
  • sloc: python: 6,194; sh: 61; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 253 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.black]
target-version = ['py37']
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
    \.git
  | \.tox
)/
'''

[tool.tox]
legacy_tox_ini = '''
[tox]
envlist = style

[testenv:style]
deps =
	pre-commit
commands = pre-commit run --all-files
'''