-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
82 lines (71 loc) · 2.15 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
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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "qudi-iqo-modules"
dynamic = ["version"]
description = "IQO measurement modules collection for qudi"
readme = "README.md"
keywords = [
"qudi",
"diamond",
"quantum",
"confocal",
"experiment",
"lab",
"laboratory",
"instrumentation",
"instrument",
"modular",
"measurement",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8, <3.11"
dependencies = [
"qudi-core>=1.5.1",
"entrypoints>=0.4",
"fysom>=2.1.6",
"lmfit>=1.0.3",
"lxml>=4.9.1",
"matplotlib>=3.6.0",
"nidaqmx>=0.5.7",
"numpy>=1.23.3,<2.0",
"pyqtgraph>=0.13.1",
"PySide2", # get fixed version from core
"PyVisa>=1.12.0",
"scipy>=1.9.1",
"zaber_motion>=2.14.6",
]
[project.urls]
Homepage = "https://github.com/Ulm-IQO/qudi-iqo-modules"
Repository = "https://github.com/Ulm-IQO/qudi-iqo-modules.git"
"Bug Tracker" = "https://github.com/Ulm-IQO/qudi-iqo-modules/issues"
Changelog = "https://github.com/Ulm-IQO/qudi-iqo-modules/blob/main/docs/changelog.md"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[project.optional-dependencies]
dev-test = ["pytest", "pytest-qt", "coverage"]