File: pyproject.toml

package info (click to toggle)
sbws 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,872 kB
  • sloc: python: 9,602; sh: 119; makefile: 37
file content (24 lines) | stat: -rw-r--r-- 464 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
22
23
24

[tool.black]
line-length = 79
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
  docs
  | .*__init__\.py
  | .*_version\.py
)/
'''


[tool.isort]
line_length = 79
# Compatibility with black
# profile = black  # does not seem to work
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
src_paths = "sbws,tests"
skip = "versioneer.py,docs,sbws/_version.py,sbws/__init__.py"