Created
June 9, 2021 12:20
-
-
Save genadyp/325bd56b59281121d342c2ac3ddf813f to your computer and use it in GitHub Desktop.
pyproject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/Pylons/pyramid/blob/master/pyproject.toml | |
| [build-system] | |
| requires = ["setuptools", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [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. | |
| [tool.isort] | |
| profile = "black" | |
| multi_line_output = 3 | |
| src_paths = ["src", "tests"] | |
| skip_glob = ["docs/*"] | |
| include_trailing_comma = true | |
| force_grid_wrap = false | |
| combine_as_imports = 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" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
link