-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1 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
[project]
name = "m2-tracking"
version = "0.1.0"
description = "M2 Widefield Microscopy - Instrument Control & Hardware Validation"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pyvisa>=1.13",
"pyvisa-py>=0.7",
"influxdb-client>=1.36",
"matplotlib>=3.7",
"pydantic>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
lab = [
"qudi-core", # install from source: pip install git+https://github.com/Ulm-IQO/qudi-core.git
"marimo>=0.6",
"pyserial>=3.5",
]
dev = [
"pytest>=7.4",
"pytest-timeout>=2.1",
"pytest-asyncio>=0.21",
]
[tool.pytest.ini_options]
timeout = 30
testpaths = ["tests"]
markers = [
"hardware: requires physical hardware connection",
"slow: long-running calibration or stability test",
"daily: should run in daily hardware health check",
"weekly: should run in weekly calibration sweep",
]
addopts = "-v --tb=short"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"