-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.cfg
75 lines (68 loc) · 1.86 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
[metadata]
name = zhinst-toolkit
author = Zurich Instrument
author_email = [email protected]
description = Zurich Instruments Toolkit High Level API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/zhinst/zhinst-toolkit
project_urls =
Bug Tracker = https://github.com/zhinst/zhinst-toolkit/issues
Documentation = https://docs.zhinst.com/zhinst-toolkit/en/latest/
Release notes = https://docs.zhinst.com/zhinst-toolkit/en/latest/changelog/index.html
Source = https://github.com/zhinst/zhinst-toolkit
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
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.7
use_scm_version= True
install_requires =
numpy>=1.13
zhinst-core>=23.06
zhinst-utils>=0.4.0
jsonschema>=3.2.0
jsonref>=0.2
typing_extensions>=4.1.1
pyelftools>=0.29
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