-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
54 lines (48 loc) · 1.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=3.4",
"setuptools_scm_git_archive",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "999"
[tool.pytest.ini_options]
addopts = "--ignore=noxfile.py -n=auto -v --cov=pydaymet --cov-report xml --durations=5"
doctest_optionflags = 'NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL NUMBER'
testpaths = [
"tests",
"pydaymet",
]
filterwarnings =[
"ignore:.*distutils.*",
"ignore:.*this is an initial implementation.*",
]
[tool.mypy]
strict = true
check_untyped_defs = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "pydaymet"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100
[tool.pycln]
expand_stars = true
verbose = true
all = true
no_gitignore = false
[tool.black]
line-length = 100
target-version = ['py38']