-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 976 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "tensorboars"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.maturin]
python-source = "python"
[tool.pyright]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"python/tests"
]
addopts = "-m \"not benchmark\" --strict-markers --benchmark-group-by param:n_samples --benchmark-columns median"
markers = [
"benchmark:marks benchmarks, which are not run as part of CI"
]
filterwarnings = [
"ignore:ANTIALIAS is deprecated*:DeprecationWarning",
"ignore::DeprecationWarning:tensorboardX.*"
]
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"fixme"
]
[tool.isort]
py_version=39
profile = "black"