-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (86 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
90 lines (86 loc) · 1.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "LDAQ"
version = "1.2.0"
authors = [
{ name = "Tilen Košir, Klemen Zaletelj, Janko Slavič", email = "janko.slavic@fs.uni-lj.si" },
]
maintainers = [
{ name = "Tilen Košir, Klemen Zaletelj", email = "klemen.zaletelj@fs.uni-lj.si" },
]
license = "MIT"
description = "Data acquisition and generation with live visualization."
readme = "README.rst"
keywords = [
"data acquisition",
"data generation",
"live visualization",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.11.0",
"scipy>=1.2.0",
"pyqtgraph",
"matplotlib",
"beautifultable>=1.1.0",
"dill",
"keyboard",
"pyTrigger",
"sphinx-copybutton",
"pyserial",
"openpyxl",
"pandas>=2.0.0",
"urllib3<2.0",
"tqdm",
"msgpack",
"psutil",
"flask",
"flask-socketio",
"nidaqwrapper>=0.1.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"wheel",
"pytest",
"sphinx-rtd-theme",
"nbsphinx",
"nbsphinx_link",
"jupyter",
"sphinx-book-theme",
"tomli",
"tomli-w",
]
qt = [
"pyqt6",
]
bluetooth = [
"bleak",
]
ni = [
"nidaqwrapper>=0.1.0",
"nidaqmx>=0.8.0",
]
[project.urls]
homepage = "https://github.com/ladisk/LDAQ"
documentation = "https://ldaq.readthedocs.io/en/latest/"
source = "https://github.com/ladisk/LDAQ"
[dependency-groups]
dev = [
"code2flow>=2.5.1",
"pydeps>=3.0.2",
"pylint>=4.0.5",
"pytest-cov>=7.0.0",
]