-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.41 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = [
"setuptools >= 80",
"setuptools_scm[toml] >= 8"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "umi/_version.py"
write_to_template = '''
# This file is automatically generated by setuptools_scm.
# Do not edit it directly.
__version__ = "{version}"
'''
[tool.setuptools]
include-package-data = true
packages = ["umi"]
[project]
name = "umi"
authors = [{name = "Zero ASIC"}]
description = "Universal Memory Interface (UMI)"
readme = "README.md"
urls = {Homepage = "https://github.com/zeroasiccorp/umi"}
requires-python = ">= 3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"siliconcompiler >= 0.36.5",
"lambdalib >= 0.12.0, <0.13.0"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest == 8.4.2",
"pytest-xdist == 3.8.0",
"pytest-timeout == 2.4.0",
"flake8 == 7.3.0",
"switchboard-hw==0.3.3",
"cocotb==2.0.1",
"cocotb-bus==0.3.0",
"cocotbext-axi==0.1.28",
"cocotbext-umi==0.0.3",
"cocotbext-apb==0.11.0"
]
[tool.check-wheel-contents]
ignore = [
"W002"
]
[tool.pytest.ini_options]
markers = [
"eda: this test requires EDA tools installed to run",
"switchboard: this test requires switchboard to run",
"cocotb: this test requires cocotb to run"
]
pythonpath = [
"tests"
]
testpaths = [
"tests",
"umi/sumi/tests",
"umi/lumi/tests"
]
timeout = "360"