31 lines
546 B
TOML
31 lines
546 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kernbench"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pytest", "simpy", "pyyaml"]
|
|
|
|
[project.scripts]
|
|
kernbench = "kernbench.cli.main:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7",
|
|
"ruff>=0.4.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
fix = false
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B", "UP"]
|
|
ignore = ["F401"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["--disable-warnings"]
|