forked from SC-SGS/hardware_sampling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (31 loc) · 1.11 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
[build-system]
requires = [
"scikit-build-core",
"pybind11",
"setuptools>=42.0.0",
]
build-backend = "scikit_build_core.build"
[project]
name="HardwareSampling"
dynamic = ["version"]
description="The Hardware Sampling (hws) library can be used to track hardware performance like clock frequency, memory usage, temperatures, or power draw. "
readme = "README.md"
authors = [
{ name = "HardwareSampling Contributors" },
{ name = "Marcel Breyer", email = "[email protected]" },
{ name = "Alexander Van Craen", email = "[email protected]" },
]
keywords = ["hardware", "sampling", "performance", "monitoring", "power", "temperature", "clock", "frequency", "memory", "usage"]
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
cmake.version = ">=3.22"
cmake.verbose = true
logging.level = "DEBUG"
wheel.packages = []
wheel.install-dir = "HardwareSampling"
wheel.license-files = ["LICENSE"]
cmake.build-type = "Release"
install.strip = false
[tool.scikit-build.cmake.define]
HWS_ENABLE_PYTHON_BINDINGS="ON"
[tool.setuptools_scm]