Michael Merickel
2018-10-26 035f6cf8238211d097c991677fde6b5bc046a57b
commit | author | age
851c36 1 [build-system]
MM 2 requires = ["setuptools", "wheel"]
3
4 [tool.black]
5 line-length = 79
6 skip-string-normalization = true
7 py36 = false
8 exclude = '''
9 /(
10     \.git
11   | \.mypy_cache
12   | \.tox
13   | \.venv
14   | \.pytest_cache
15   | dist
16   | build
17   | docs
18   | src/pyramid/scaffolds/alchemy
19   | src/pyramid/scaffolds/starter
20   | src/pyramid/scaffolds/zodb
21 )/
22 '''
23
24  # This next section only exists for people that have their editors
25 # automatically call isort, black already sorts entries on its own when run.
26 [tool.isort]
27 multi_line_output = 3
28 include_trailing_comma = true
29 force_grid_wrap = 0
30 combine_as_imports = true
31 line_length = 79