-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
59 lines (52 loc) · 1.1 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = [
"setuptools >= 61.2",
"setuptools_scm[toml] >= 6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# Presence of this section activates setuptools_scm, even though it's empty
[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.8"
license = {file = "LICENSE"}
dependencies = [
"siliconcompiler>=0.27.0",
"lambdalib>=0.2.10, <0.4.0"
]
dynamic = [
"version"
]
[tool.setuptools.dynamic]
version = {attr = "umi.__version__"}
[project.optional-dependencies]
test = [
"switchboard-hw>=0.2.17",
"flake8==7.1.1",
"pytest==8.3.3",
"pytest-xdist==3.6.1",
"pytest-timeout==2.3.1"
]
[tool.setuptools]
include-package-data = true
packages = [
"umi"
]
[tool.check-wheel-contents]
ignore = [
"W002"
]
[tool.pytest.ini_options]
markers = [
"switchboard: this test requires switchboard to run"
]
testpaths = [
"tests",
"umi/sumi/tests",
"umi/lumi/tests"
]
timeout = "300"