-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpyproject.toml
78 lines (70 loc) · 1.52 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
# Minimum requirements for the build system to execute.
requires = ["wheel", "setuptools>=30.3.0", "attrs>=17.1", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/pyhf/_version.py"
local_scheme = "no-local-version"
[tool.black]
line-length = 88
target-version = ['py37', 'py38']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| .eggs
| build
)/
'''
[tool.check-manifest]
ignore = [
'docs*',
'validation*',
'examples*',
'tests*',
'docker*',
'binder*',
'.*',
'pyproject.toml',
'pytest.ini',
'codecov.yml',
'codemeta.json',
'CODE_OF_CONDUCT.md',
'CONTRIBUTING.md',
'AUTHORS',
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ignore=setup.py --ignore=validation/ --ignore=binder/ --ignore=docs/ --cov=pyhf --cov-report=term-missing --cov-config=.coveragerc --cov-report xml --doctest-modules --doctest-glob='*.rst'"
testpaths = [
"src",
"tests",
]
markers = [
"fail_jax",
"fail_numpy",
"fail_numpy_minuit",
"fail_pytorch",
"fail_pytorch64",
"fail_tensorflow",
"only_jax",
"only_numpy",
"only_numpy_minuit",
"only_pytorch",
"only_pytorch64",
"only_tensorflow",
"skip_jax",
"skip_numpy",
"skip_numpy_minuit",
"skip_pytorch",
"skip_pytorch64",
"skip_tensorflow",
]
[tool.nbqa.config]
black = "pyproject.toml"
[tool.nbqa.mutate]
black = 1
pyupgrade = 1
[tool.nbqa.addopts]
pyupgrade = ["--py37-plus"]