15 lines
325 B
TOML
15 lines
325 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"]
|