-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 801 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools >= 61.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = [
"logikbench"
]
[project]
name = "logikbench"
authors = [{name = "Zero ASIC"}]
description = "Parameterized RTL benchmark suite"
readme = "README.md"
urls = {Homepage = "https://github.com/zeroasiccorp/logikbench"}
requires-python = ">= 3.10"
license = {file = "LICENSE"}
dependencies = [
"siliconcompiler >= 0.35.0"
]
dynamic = ['version']
[project.scripts]
lb = "logikbench.apps.lb:main"
[tool.setuptools.dynamic]
version = {attr = "logikbench.__version__"}
[tool.pytest.ini_options]
testpaths = "tests"
timeout = "60"
[project.optional-dependencies]
test = [
"pytest == 8.4.2",
"pytest-timeout == 2.4.0",
"flake8 == 7.3.0"
]