-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.25 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
[tool.poetry]
name = "firepydaq"
version = "0.1.1"
description = "Facilitated Interface for Recording Experiments (FIRE), a python-based Data Acquisition package for nidaqmx, Alicat, and ThorlabsCLD101X devices."
authors = ["Dushyant Chaudhari <[email protected]>"]
license = "GNU General Public v3"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
nidaqmx = "^1.0.0"
alicat = "^0.6.2"
dash = "^2.17.1"
dash-auth = "^2.3.0"
dash-daq = "^0.5.0"
dash-bootstrap-components = "^1.6.0"
matplotlib = "^3.7.0"
numpy = "^1.26.0"
pandas = "^2.2.2"
plotly = "^5.22.0"
polars = "1.5.0"
pyarrow = ">=14.0.2"
pyqtgraph = "^0.13.7"
pyserial = "^3.5"
PySide6 = "^6.7.2"
PyVISA = "^1.14.1"
jsonschema = "^4.23.0"
setuptools = "^72.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
coverage = "^7.6.1"
coverage-badge = "^1.1.2"
pyinstaller = "6.7.0"
pytest-qt = "^4.4.0"
[tool.poetry.group.dev.dependencies]
myst-nb = {version = "^1.1.1", python = "^3.9"}
sphinx-autoapi = "^3.1.2"
furo = "^2024.8.6"
notebook = "^7.2.2"
sphinxext-opengraph = "^0.9.1"
sphinxcontrib-googleanalytics="^0.4"
sphinx-jsonschema = "^1.19.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "firepydaq/"