-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
94 lines (83 loc) · 2.58 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
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "qudi-core"
dynamic = ["version"]
description = "A modular measurement application framework"
readme = "README.md"
keywords = [
"qudi",
"diamond",
"quantum",
"confocal",
"automation",
"experiment",
"measurement",
"framework",
"lab",
"laboratory",
"instrumentation",
"instrument",
"modular",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"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",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces",
]
requires-python = ">=3.8, <3.11"
dependencies = [
"cycler>=0.10.0",
"entrypoints>=0.3",
"fysom>=2.1.6",
"GitPython>=3.1.24",
"jupyter>=1.0.0",
"jupytext>=1.13.0",
"lmfit>=1.0.3",
"matplotlib>=3.4.3",
"numpy>=1.21.3, < 2",
"pyqtgraph>=0.13.0",
"PySide2==5.15.2.1",
"rpyc>=5.0.1, <6",
"ruamel.yaml>=0.17.16",
"scipy>=1.7.1",
"jsonschema>=4.2.1",
"qtconsole>=5.5.0",
]
[project.scripts]
qudi = "qudi.runnable:main"
qudi-config-editor = "qudi.tools.config_editor.config_editor:main"
qudi-uninstall-kernel = "qudi.core.qudikernel:uninstall_kernel"
qudi-install-kernel = "qudi.core.qudikernel:install_kernel"
[project.urls]
Homepage = "https://github.com/Ulm-IQO/qudi-core"
Documentation = "https://ulm-iqo.github.io/qudi-core/"
Repository = "https://github.com/Ulm-IQO/qudi-core.git"
"Bug Tracker" = "https://github.com/Ulm-IQO/qudi-core/issues"
Changelog = "https://github.com/Ulm-IQO/qudi-core/blob/main/docs/changelog.md"
[tool.setuptools.dynamic]
version = {file = "VERSION"}