forked from SciTools/nc-time-axis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 881 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
[build-system]
# Defined by PEP 518
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=6.0",
"wheel",
]
# Defined by PEP 517
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
)
'''
[tool.isort]
known_first_party = "nc_time_axis"
line_length = 79
profile = "black"
skip_gitignore = "True"
verbose = "False"
[tool.pytest.ini_options]
addopts = "-ra -v --doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS NUMBER"
minversion = "6.0"
testpaths = "nc_time_axis"
[tool.setuptools_scm]
write_to = "nc_time_axis/_version.py"