22 lines
399 B
TOML
22 lines
399 B
TOML
[project]
|
|
name = "speccpulib"
|
|
version = "0.1.0"
|
|
description = "Scripts that helps debugging SPEC CPU benchmark suite."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.1.8",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = { find = { where = ["src"] } }
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
"speccpu" = ["*.c"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|