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