-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["setuptools>=46.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
# Use the more relaxed max line length permitted in PEP8.
line-length = 99
target-version = ["py37"]
# black will automatically exclude all files listed in .gitignore
[tool.isort]
profile = "black"
line_length = 99
force_sort_within_sections = true
# Inform isort of paths to import names that should be considered part of the "First Party" group.
src_paths = ["src/dck_problem1"]
skip_gitignore = true
# If you need to skip/exclude folders, consider using skip_glob as that will allow the
# isort defaults for skip to remain without the need to duplicate them.
[tool.coverage.run]
branch = true
[tool.coverage.paths]
# Files with these prefixes are treated as identical for the purposes of coverage combine.
source = [
# The first path is the name to which all paths get unified
"src/",
# tox on Linux
".tox/py*/lib/python*/site-packages/",
# tox on Windows
".tox/py*/Lib/site-packages/",
]