-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
59 lines (55 loc) · 1.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
[metadata]
name = zhinst-utils
author = Zurich Instrument
author_email = [email protected]
description = Zurich Instruments utils for device control
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/zhinst/zhinst-utils
project_urls =
Bug Tracker = https://github.com/zhinst/zhinst-utils/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.7
install_requires =
numpy>=1.14
zhinst-core>=23.06
zhinst-timing-models
use_scm_version = 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,
# Name may be undefined, or defined from star imports: module
F405,F403
exclude =
.git,
.tox
__pycache__,
.ipynb_checkpoints,
tests
venv*
build
docs
examples
src/zhinst/utils/shf_sweeper.py
per-file-ignores =
# disable unused-imports errors on __init__.py
__init__.py: F401
docstring-convention=google
[mypy]
ignore_missing_imports = True