-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 1.39 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
[project]
name = "MachineState"
dynamic = ["version"]
authors = [
{ name="Thomas Gruber", email="thomas.gruber@fau.de" },
{ name="Jan Laukemann", email="jan.laukemann@fau.de" },
{ name="Julian Hammer", email="julian.hammer@fau.de" },
]
description = "Gathering the system state before benchmarking and other tests on compute systems."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: System :: Benchmark",
"Topic :: System :: Hardware",
"Topic :: System :: Operating System",
"Topic :: System :: Systems Administration",
"Topic :: Education :: Testing",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Programming Language :: Python :: 3",
]
keywords=["benchmarking", "linux", "system state", "topology"]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/RRZE-HPC/MachineState"
Issues = "https://github.com/RRZE-HPC/MachineState/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "machinestate.MACHINESTATE_VERSION" }
[project.scripts]
machinestate = "machinestate:main"