-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (54 loc) · 1.6 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
# SPDX-License-Identifier: MIT
# Copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved.
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "linex"
dynamic = ["version"]
description = "Linex: Source-Level SQTT Profiling - Map GPU cycles to your source code"
authors = [
{ name = "Muhammad Awad", email = "muhaawad@amd.com" },
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"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/linex"
Repository = "https://github.com/AMDResearch/intellikit/tree/main/linex"
Documentation = "https://github.com/AMDResearch/intellikit/blob/main/linex/README.md"
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[project.scripts]
linex-mcp = "linex.mcp.server:main"
# ---- 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"]
# ---- Ruff configuration ----
[tool.ruff]
extend = "../ruff.toml"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501", "E731", "E741"]