-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
80 lines (68 loc) · 1.67 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
[project]
name = "QuMADA"
description = "Measurement Abstraction and Database Access layer for QCoDeS"
readme = "README.md"
authors = [
{name = "JARA Institute for Quantum Information"},
]
license = {text = "GPLv3+"}
keywords = ["quantum", "physics", "abstraction", "metadata", "data management"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"qcodes >= 0.46.0",
"qcodes_contrib_drivers >= 0.18.0",
"matplotlib",
"jsonschema",
"zhinst-toolkit >= 0.3.3",
"pyqt5",
"versioningit ~= 2.2.0",
]
[project.optional-dependencies]
gui = ["plottr"]
spyder = ["spyder"]
[project.urls]
Repository = "https://github.com/qutech/qumada"
Documentation = "https://qumada.readthedocs.io/en/latest/"
[build-system]
requires = [
"setuptools >= 68.1.0",
"versioningit ~= 2.2.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
qumada = ["*.json"]
[tool.versioningit]
default-version = "0.0"
[tool.versioningit.onbuild]
source-file = "src/qumada/_version.py"
build-file = "qumada/_version.py"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
qt_api = "pyqt5"
[tool.coverage.run]
source = [
"qumada",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages"
]
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 39