[build-system] requires = ["setuptools", "wheel"] [tool.black] line-length = 79 skip-string-normalization = true py36 = false exclude = ''' /( \.git | \.mypy_cache | \.tox | \.venv | \.pytest_cache | dist | build | docs )/ ''' # This next section only exists for people that have their editors # automatically call isort, black already sorts entries on its own when run. [tool.isort] multi_line_output = 3 include_trailing_comma = true force_grid_wrap = false combine_as_imports = true use_parenthesis = true line_length = 79 force_sort_within_sections = true no_lines_before = "THIRDPARTY" sections = "FUTURE,THIRDPARTY,FIRSTPARTY,LOCALFOLDER" default_section = "THIRDPARTY" known_first_party = "pyramid"