forked from microsoft/Qcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
180 lines (151 loc) · 4.34 KB
/
setup.cfg
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
[metadata]
name = qcodes
maintainer = QCoDeS Core Developers
maintainer_email = [email protected]
description = Python-based data acquisition framework developed by the Copenhagen / Delft / Sydney / Microsoft quantum computing consortium
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/QCoDeS/Qcodes
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
license = MIT
project_urls =
Documentation = https://qcodes.github.io/Qcodes/
Source = https://github.com/qcodes/qcodes
Tracker = https://github.com/QCoDeS/Qcodes/issues
[options]
zip_safe = False
packages = find:
python_requires = >=3.7
install_requires =
numpy>=1.15
pyvisa>=1.11.0, <1.12.0
h5py>=2.8.0
websockets>=7.0
jsonschema>=3.0.0
ruamel.yaml>=0.16.0,!=0.16.6
wrapt>=1.10.4
pandas>=0.25.0
xarray>=0.16.2
tabulate>=0.8.0
tqdm>=4.32.2
opencensus>=0.7.10, <0.8.0
opencensus-ext-azure>=1.0.4, <2.0.0
matplotlib>=2.2.3
requirements-parser>=0.2.0
importlib-metadata>=1.0.0,<4.0.0; python_version < '3.8'
typing_extensions>=3.7.4
packaging>=20.0
ipywidgets>=7.5.0
broadbean>=0.9.1
netCDF4>=1.5.0.1
[options.package_data]
qcodes =
monitor/dist/*
monitor/dist/js/*
monitor/dist/css/*
configuration/*.json
instrument/sims/*.yaml
tests/dataset/fixtures/2018-01-17/*/*
tests/drivers/auxiliary_files/*
py.typed
dist/schemas/*
dist/tests/station/*
[options.extras_require]
QtPlot = pyqtgraph>=0.11.0
Slack = slacker>=0.9.42
ZurichInstruments = zhinst-qcodes>=0.1.1
test =
pytest>=6.0.0
PyVisa-sim>=0.4.0
hypothesis>=5.49.0
pytest-xdist>=2.0.0
deepdiff>=5.0.2
pytest-mock>=3.0.0
pytest-rerunfailures>=5.0.0
lxml>=4.3.0
[tool:pytest]
testpaths = "qcodes/tests"
junit_family = legacy
addopts =
-n auto
--dist=loadfile
markers = serial
; Filter google rcp related deprecation warnings.
; See https://github.com/googleapis/python-api-common-protos/issues/23
filterwarnings =
ignore:Call to deprecated create function FieldDescriptor
ignore:Call to deprecated create function Descriptor
ignore:Call to deprecated create function EnumDescriptor
ignore:Call to deprecated create function EnumValueDescriptor
ignore:Call to deprecated create function FileDescriptor
ignore:Call to deprecated create function OneofDescriptor
[mypy]
strict_optional = True
disallow_untyped_decorators = True
disallow_any_generics = True
ignore_missing_imports = True
show_column_numbers = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True
no_implicit_optional = True
[mypy-qcodes._version]
ignore_errors = True
[mypy-qcodes.*]
disallow_untyped_defs = True
[mypy-qcodes.actions.*]
disallow_untyped_defs = False
[mypy-qcodes.data.*]
disallow_untyped_defs = False
[mypy-qcodes.instrument.mockers.ami430]
disallow_untyped_defs = False
[mypy-qcodes.instrument_drivers.Harvard.*]
disallow_untyped_defs = False
[mypy-qcodes.instrument_drivers.Keysight.keysightb1500.message_builder.*]
disallow_untyped_defs = False
[mypy-qcodes.instrument_drivers.oxford.mercuryiPS]
disallow_untyped_defs = False
[mypy-qcodes.instrument_drivers.test]
disallow_untyped_defs = False
[mypy-qcodes.instrument_drivers.ZI.*]
disallow_untyped_defs = False
[mypy-qcodes.loops]
disallow_untyped_defs = False
[mypy-qcodes.math_utils.*]
disallow_untyped_defs = False
[mypy-qcodes.measure]
disallow_untyped_defs = False
[mypy-qcodes.plots.*]
disallow_untyped_defs = False
[mypy-qcodes.tests.*]
disallow_untyped_defs = False
[mypy-qcodes.utils.command]
disallow_untyped_defs = False
[mypy-qcodes.utils.magic]
disallow_untyped_defs = False
[mypy-qcodes.utils.metadata]
disallow_untyped_defs = False
[mypy-qcodes.utils.slack]
disallow_untyped_defs = False
[versioneer]
VCS = git
style = pep440
versionfile_source = qcodes/_version.py
versionfile_build = qcodes/_version.py
tag_prefix = v
parentdir_prefix = qcodes-
[coverage:run]
omit =
qcodes/__init__.py
*/__init__.py
qcodes/_version.py
qcodes/tests/*
qcodes/instrument_drivers/test.py