-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.15 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
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
amd_debug = ["s2idle-hook"]
"amd_debug.templates" = ["*"]
"amd_debug.bash" = ["amd-s2idle"]
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["src/launcher.py"]
[tool.setuptools_scm]
[project]
name = "amd-debug-tools"
authors = [{ name = "Mario Limonciello", email = "superm1@kernel.org" }]
description = "debug tools for AMD systems"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"dbus-fast",
"pyudev",
"packaging",
"pandas",
"jinja2",
"tabulate",
"seaborn",
"cysystemd",
"Jinja2",
"matplotlib",
"seaborn",
]
dynamic = ["version"]
license = "MIT"
[project.urls]
"Homepage" = "https://web.git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git/"
[project.scripts]
amd-s2idle = "amd_debug:amd_s2idle"
amd-bios = "amd_debug:amd_bios"
amd-pstate = "amd_debug:amd_pstate"
amd-ttm = "amd_debug:amd_ttm"