-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (50 loc) · 862 Bytes
/
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
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.asv
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| examples
| dist
| build
)/
)
'''
[tool.isort]
line_length = 120
profile = "black"
[build-system]
requires = [
"setuptools >= 42",
"wheel",
"setuptools_scm[toml]>=3.4"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "msalign/_version.py"
[tool.check-manifest]
ignore = [
".pre-commit-config.yaml",
"asv.conf.json",
"codecov.yml",
"Makefile",
"mypy.ini",
"tox.ini",
".deepsource.toml",
"*.pyi", # added by make typestubs
"msalign/_version.py", # added during build by setuptools_scm
"scripts/*.bat", # scripts
"renovate.json",
]