-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
78 lines (73 loc) · 1.75 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
[metadata]
name = PyVISA-proxy
author = Carsten Sauerbrey
author_email = [email protected]
maintainer = Carsten Sauerbrey
maintainer_email = [email protected]
license = MIT
description = PyVISA remote proxy server and client in order to address "remote" hardware as local
keywords =
Remote
VISA
GPIB
USB
serial
RS232
measurement
acquisition
zmq
url = https://github.com/casabre/pyvisa-proxy
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
platforms = Linux; Windows; Mac
[options]
package_dir=
=src
packages=find:
python_requires = >=3.8
install_requires =
pyvisa >=1.12.0
pyvisa-py
pyzmq
jsonschema
tblib
dill
six
packaging
use_scm_version = True
setup_requires =
setuptools_scm
[options.package_data]
pyvisa_proxy =
data/*
[options.packages.find]
where=src
[mypy]
ignore_missing_imports = True
[options.extras_require]
docs =
sphinx
sphinx-rtd-theme
myst-parser
test =
pytest
coverage[toml]
pytest-cov
pytest-asyncio
pyvisa-sim