-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (93 loc) · 2.99 KB
/
pyproject.toml
File metadata and controls
105 lines (93 loc) · 2.99 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["hatchling>=1.29"]
build-backend = "hatchling.build"
[project]
name = "reframe-hpc"
dynamic = ["version"]
authors = [
{name = "Swiss National Supercomputing Center (CSCS/ETH Zurich)"},
{name = "ReFrame Project Developers"}
]
description = "ReFrame is a powerful framework for writing system regression tests and benchmarks, specifically targeted to HPC systems"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
]
requires-python = ">=3.10"
dependencies = [
"archspec >= 0.2.4",
"argcomplete ~= 3.6",
"ClusterShell ~= 1.9",
"fasteners ~= 0.20",
"jinja2 ~= 3.1",
"jsonschema ~= 4.26",
"lxml ~= 6.0",
"polars ~= 1.39",
"PyYAML ~= 6.0",
"requests ~= 2.33",
"semver ~= 3.0",
"tabulate ~= 0.10",
]
keywords = ["benchmarking", "framework", "continuous integration", "hpc",
"regresion testing", "performance testing", "validation testing"]
[project.urls]
documentation = "https://reframe-hpc.readthedocs.io/"
releasenotes = "https://github.com/reframe-hpc/reframe/releases"
repository = "https://github.com/reframe-hpc/reframe"
tracker = "https://github.com/reframe-hpc/reframe/issues"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
reframe = "reframe.frontend.cli:main"
[project.optional-dependencies]
graylog = ["pygelf ~= 0.4"]
[dependency-groups]
dev = [
"coverage ~= 7.13",
"pytest ~= 9.0",
"pytest-forked ~= 1.6",
"pytest-rerunfailures ~= 16.1"
]
docs = [
"Sphinx ~= 8.1; python_version == '3.10'",
"Sphinx ~= 8.2; python_version >= '3.11'",
"sphinx-rtd-theme ~=3.1"
]
[tool.hatch.version]
path = "reframe/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/reframe/**/*.py",
"/reframe/schemas/**/*",
"/docs/man/man1/reframe.1",
"/docs/man/man8/reframe.settings.8",
"/examples",
"/share/completions",
"/tools",
"/CONTRIBUTING.md",
"/LICENSE",
"/REAMDE.md",
]
[tool.hatch.build.targets.wheel]
packages = ["reframe"]
[tool.hatch.build.targets.wheel.shared-data]
"docs/man/man1/reframe.1" = "share/man/man1/reframe.1"
"docs/man/man8/reframe.8" = "share/man/man8/reframe.8"
"examples" = "share/doc/reframe-hpc/examples"
"share/completions/reframe.bash" = "share/bash-completion/completions/reframe"
"share/completions/reframe.fish" = "share/fish/vendor_completions.d/reframe.fish"
"share/completions/reframe.tcsh" = "share/reframe/completions/reframe.tcsh"
[tool.flake8]
extend-ignore = "E129,E221,E226,E241,E402,E272,E741,E742,E743,F821,W504"
exclude = ".git,__pycache__,docs/conf.py,external"