-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
54 lines (48 loc) · 1.15 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", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "excalibur-tests"
version = "0.0.1"
authors = [
{name = "Mose Giordano", email = "[email protected]"},
{name = "Tuomas Koskela", email = "[email protected]"},
{name = "Ilektra Christidi", email = "[email protected]"},
{name = "Tom Young", email = "[email protected]"}
]
description = "Framework for building and running HPC benchmarks"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"benchmark",
"hpc"
]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"reframe-hpc >= 4.6.1, < 5.0.0",
"matplotlib >= 3.0.0",
]
[project.optional-dependencies]
test = [
"pytest >= 6.0",
"excalibur-tests[post-processing]",
]
post-processing = [
"pandas >= 2.0.1",
"bokeh == 2.4.3",
"titlecase >= 2.4.1",
"streamlit >= 1.30.0",
"numpy < 2.0.0",
]
[tool.setuptools_scm]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"post-processing",
]