-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xdna-top"
version = "0.5.0"
description = "Unified NPU+iGPU Telemetry Monitor for AMD Strix Halo"
readme = "README.md"
authors = [
{ name = "Keith" }
]
license = "Apache-2.0"
urls = { Repository = "https://github.com/boxwrench/xdna-top" }
requires-python = ">=3.11"
dependencies = [
"rich",
]
[project.optional-dependencies]
# Dev-only tooling for regenerating docs (experiments index, themes, gallery.png).
# Not needed to run xdna-top. See docs/themes/render_gallery.py and
# tools/build_experiments_index.py (which parses YAML front-matter).
docs = [
"cairosvg",
"pillow",
"pyyaml",
]
# Prometheus exporter (`xdna-top exporter`). Not needed for the TUI/snapshots.
exporter = [
"prometheus_client",
]
# Everything needed to run the full test suite locally (pulls in the docs +
# exporter extras so every test module is collectable). See CONTRIBUTING.md.
dev = [
"xdna-top[docs,exporter]",
"build",
"pytest",
]
[project.scripts]
xdna-top = "xdna_top.main:main"
lemonade-top = "xdna_top.lemonade:main"
[tool.setuptools.packages.find]
where = ["src"]