-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
78 lines (66 loc) · 1.81 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]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qmat"
version = "0.1.12"
description = "Generation of Q-coefficients for Spectral Deferred Corrections (and other time-integration methods ...)"
dependencies = [
"numpy",
"scipy",
]
requires-python = ">=3.8"
maintainers = [
{name = "Thibaut Lunet", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-notebook",
"pytest-timeout",
"coverage[toml]",
"notebook",
"matplotlib",
"jupyter",
"nbconvert",
]
[project.urls]
Homepage = "https://github.com/Parallel-in-Time/qmat"
Documentation = "https://qmat.readthedocs.io/"
Tracker = "https://github.com/Parallel-in-Time/qmat/issues"
[project.scripts]
qmat-stability = "qmat.scripts.stability:main"
[tool.pytest.ini_options]
nb_diff_ignore = [
"/metadata/",
"/cells/*/outputs/*/data/image/png"]
[tool.coverage.run]
relative_files = true
concurrency = ['multiprocessing']
source = ['qmat']
[tool.coverage.report]
skip_empty = true
# Regexes for lines to exclude from consideration
exclude_lines = [
# Enable the standard pragma
'pragma: no cover',
# Don't complain if tests don't hit defensive assertion code:
'raise',
'except',
# Ignore footer of scripts
'if __name__ == "__main__":',
]