-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
54 lines (49 loc) · 1.06 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "cocotbext-spi"
description = "SPI modules for cocotb"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Spencer Chang", email = "[email protected]"},
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
dynamic = [
"version",
]
dependencies = [
"cocotb>=1.6",
"cocotb-bus>=0.2.1",
]
[project.urls]
repository = "https://github.com/schang412/cocotbext-spi"
[tool.setuptools_scm]
write_to = "cocotbext/spi/_version.py"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
addopts = "--import-mode importlib"
[tool.pdm]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.2.1",
"cocotb-test>=0.2.4",
"pytest-xdist>=3.2.0",
]
lint = [
"flake8>=5.0.4",
]