-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# See link below for available options
# https://github.com/pypa/setuptools_scm/#configuration-parameters
write_to = "tox_ltt/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "node-and-timestamp"
[tool.isort]
# See link below for available options
# https://github.com/timothycrosley/isort/wiki/isort-Settings#full-reference-of-isort-settings
skip = [
".git",
".github",
".venv",
".eggs",
".mypy_cache",
".pytest_cache",
".tox",
"__pycache__",
"docs/build",
]
line_length = 88
use_parentheses = true
multi_line_output = 3
force_grid_wrap = 0
include_trailing_comma = true
known_third_party = ["pytest", "tox"]
known_first_party = ["light-the-torch", "tox_ltt"]
[tool.black]
# See link below for available options
# https://github.com/psf/black#configuration-format
line-length = 88
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
\.git
| \.github
| \.venv
| \.eggs
| \.mypy_cache
| \.pytest_cache
| \.tox
| __pycache__
| docs/build
)/
'''