-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
80 lines (71 loc) · 1.83 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
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[project]
name = "qkit"
dynamic = ["version"]
# No version, as it is provided by the git tag.
authors = [
{ name = "PHI AG Ustinov" }
]
description = "qKIT quantum measurement suite in python"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Framework :: Jupyter :: JupyterLab :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
]
keywords = ["Quantum", "Measurement", "Framework", "Data Acquisition"]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"h5py>=3.8",
"pyqt5~=5.15",
"pyqtgraph~=0.13",
"PyVISA>=1.13",
"PyVISA-py>=0.6",
"pyzmq>=25",
"tomli>=2.0.1"
]
[project.scripts]
qviewkit = "qkit.gui.qviewkit.main:main"
qkit-install = "qkit.install.install:main"
qkit-manual-breadcrumbs = "qkit.core.lib.file_service.breadcrumbs:manual_index"
[project.optional-dependencies] # Here goes stuff like qiclib
jupyter = [
"jupyterlab>=3.6",
"jupyterlab-templates>=0.4",
"ipywidgets>=8.0"
]
zurich-instruments = [
"zhinst~=23.2"
]
analysis = [
"matplotlib>=3.7",
"uncertainties>=3.1",
"peakutils>=1.3"
]
qgrid = [
"qgrid>=1.0"
]
timedomain = [
"zerorpc>=0.6"
]
[project.urls]
"Homepage" = "https://github.com/qkitgroup/qkit"
"Bug Tracker" = "https://github.com/qkitgroup/qkit/issues"
[tool.hatch.version]
source = "versioningit"
[tool.versioningit.write]
file = "src/qkit/_version.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
artifacts = ["src/qkit/_version.py"]
[tool.hatch.build.targets.wheel]
packages = ["src/qkit"]
[tool.hatch.build.targets.sdist]
exclude = ["data/*", "notebooks/*", "logs/*", "venv/*"]