File size: 540 Bytes
679abc4 |
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 |
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "hardware_accelerators"
version = "0.1.0"
description = "Internal package for hardware accelerator implementations"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-v", "--import-mode=importlib"]
pythonpath = ["."]
[tool.coverage.run]
source = ["hardware_accelerators"]
omit = ["tests/*"]
[tool.black]
verbose = true
target-version = ['py312']
extend-exclude = "rtllib/utils/converters.py"
[tool.isort]
profile = "black"
|