-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
48 lines (43 loc) · 965 Bytes
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
[build-system]
requires = [
"setuptools >= 61.2",
"setuptools_scm[toml] >= 6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = [
"lambdalib"
]
[project]
name = "lambdalib"
authors = [{name = "Zero ASIC"}]
description = "Standardized ASIC design libraries"
readme = "README.md"
urls = {Homepage = "https://github.com/siliconcompiler/lambdalib"}
requires-python = ">= 3.8"
license = {file = "LICENSE"}
dependencies = [
"siliconcompiler >= 0.28.0",
"Jinja2 >= 3.1.3"
]
dynamic = ['version']
[tool.setuptools.dynamic]
version = {attr = "lambdalib._common._version"}
[project.optional-dependencies]
# Dev dependencies.
dev = [
"flake8 >= 5.0.0",
"pytest >= 6.2.4",
"pytest-timeout >= 2.1.0",
"cocotb==1.9.2",
"cocotb-bus==0.2.1"
]
[tool.pytest.ini_options]
markers = [
"eda: this test requires EDA tools installed to run.",
]
testpaths = [
"tests"
]
timeout = "60"