-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (58 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (58 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-License-Identifier: MIT
# Copyright (c) 2025 Advanced Micro Devices, Inc. All rights reserved.
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "metrix"
dynamic = ["version"]
description = "Metrix: GPU Profiling. Decoded. Clean metrics for humans, not hardware counters for engineers."
authors = [
{ name = "Muhammad Awad", email = "muhaawad@amd.com" },
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pandas>=1.5.0",
"fastmcp>=2.0.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Profiling",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/AMDResearch/intellikit/tree/main/metrix"
Repository = "https://github.com/AMDResearch/intellikit/tree/main/metrix"
Documentation = "https://github.com/AMDResearch/intellikit/blob/main/metrix/README.md"
[project.scripts]
metrix = "metrix.cli.main:main"
metrix-mcp = "metrix.mcp.server:main"
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
# ---- setuptools-scm versioning ----
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
fallback_version = "0.1.0"
root = ".."
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"metrix.backends" = ["*.hip"]
# ---- Ruff configuration ----
[tool.ruff]
extend = "../ruff.toml"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501", "E701", "E731", "E741", "F841", "F401"]