-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
70 lines (64 loc) · 1.73 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
[metadata]
name = zhinst-qcodes
author = Zurich Instrument
author_email = info@zhinst.com
description = Zurich Instruments drivers for QCoDeS
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/zhinst/zhinst-qcodes
project_urls =
Bug Tracker = https://github.com/zhinst/zhinst-qcodes/issues
Documentation = https://docs.zhinst.com/zhinst-qcodes/en/latest/
Release notes = https://docs.zhinst.com/zhinst-qcodes/en/latest/changelog/index.html
Source = https://github.com/zhinst/zhinst-qcodes
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.10
use_scm_version = True
install_requires =
numpy>=1.13
zhinst-toolkit>=0.7.0
qcodes>=0.30.0
typing_extensions>=4.1.1
include_package_data = True
[options.packages.find]
where = src
include = zhinst.*
[flake8]
max-line-length = 88
ignore =
# Line break before binary operator (conflicts with black)
W503,
# Missing docstring in __init__ (Dostring in class definition.)
D107,
# Missing docstring in magic method
D105,
exclude =
.git,
.tox
__pycache__,
.ipynb_checkpoints,
tests
venv*
build
docs
examples
per-file-ignores =
# disable unused-imports errors on __init__.py
__init__.py: F401
docstring-convention=google
[mypy]
ignore_missing_imports = True
show_error_codes = True
no_implicit_optional=False