-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (59 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (59 loc) · 1.73 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
70
71
72
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "basil_daq"
dynamic = ["version"]
license = { "text" = "BSD 3-Clause ('BSD New' or 'BSD Simplified') License" }
description = "Basil is a modular data acquisition system and system testing framework in Python.\nIt also provides generic FPGA firmware modules for different hardware platforms and drivers for wide range of lab appliances."
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [
{name = "Tomasz Hemperek", email="hemperek@uni-bonn.de"},
{name = "Jens Janssen", email="janssen@physik.uni-bonn.de"},
{name = "David-Leon Pohl", email="pohl@physik.uni-bonn.de"}
]
maintainers = [
{name = "Yannick Dieter", email = "dieter@physik.uni-bonn.de"},
{name = "Christian Bespin", email = "bespin@physik.uni-bonn.de"},
]
dependencies = [
"numpy",
"pyyaml",
"bitarray>=3.4.0",
"GitPython",
"six",
"ruamel.yaml",
]
[project.urls]
"Documentation" = "https://basil.readthedocs.io/en/latest/"
"Repository" = "https://github.com/SiLab-Bonn/basil/"
[project.optional-dependencies]
hw = ["pyserial", "PyVISA"]
test = [
"coverage",
"cocotb>=2.0.1",
"cocotb-bus>=0.3.0",
"cocotb-test>=0.2.6",
"diff-cover",
"pytest>=9.0.3",
"PyVISA",
"pyvisa-sim",
]
docs = [
"sphinx",
"sphinx-book-theme",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "basil.__version__"}
[tool.pytest.ini_options]
markers = ["verilator: Verilog tests."]
[tool.isort]
profile = "black"
[tool.ruff]
# Set the maximum line length to 180.
line-length = 120
[tool.uv.sources]
cocotb-test = { git = "https://github.com/themperek/cocotb-test.git", rev = "4e6b7db" }