-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.39 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
# SPDX-License-Identifier: MIT
# Copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved.
[build-system]
requires = ["setuptools>=61", "wheel", "cmake>=3.18", "setuptools-scm>=8", "pybind11>=2.6", "pybind11-global>=3.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kerneldb"
dynamic = ["version"]
description = "C++ library for querying data within CDNA kernel implementations, supporting memory access efficiency analysis."
authors = [
{ name = "Keith Lowery", email = "Keith.Lowery@amd.com" },
]
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
[project.urls]
Homepage = "https://github.com/AMDResearch/kerneldb"
Repository = "https://github.com/AMDResearch/kerneldb"
Documentation = "https://github.com/AMDResearch/kerneldb"
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools]
packages = ["kerneldb"]
[tool.setuptools.package-data]
kerneldb = ["*.so", "*.so.*"]
[tool.setuptools.dynamic]
version = {attr = "setuptools_scm.get_version"}
# ---- pytest configuration ----
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
# ---- setuptools-scm versioning ----
[tool.setuptools_scm]
version_scheme = "post-release" # .postN after last tag
local_scheme = "node-and-date" # add commit hash (e.g. +gabc1234) and date (e.g. +20250914)
fallback_version = "0.0.0" # used if git metadata unavailable