File: pyproject.toml

package info (click to toggle)
amd-debug-tools 0.2.13-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: python: 11,042; makefile: 30
file content (53 lines) | stat: -rw-r--r-- 1,174 bytes parent folder | download
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"