forked from pyvisa/pyvisa-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
101 lines (86 loc) · 2.55 KB
/
pyproject.toml
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
[project]
name = "PyVISA-sim"
description = "Simulated backend for PyVISA implementing TCPIP, GPIB, RS232, and USB resources"
readme = "README.rst"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
authors = [
{name = "Hernan E. Grecco", email = "[email protected]"},
]
maintainers = [
{name = "Matthieu C. Dartiailh", email = "[email protected]"}
]
keywords = [
"VISA",
"GPIB",
"USB",
"serial",
"RS232",
"measurement",
"acquisition",
"simulator",
"mock",
]
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",
]
dependencies = [
"pyvisa>=1.11.0",
"PyYAML",
"stringparser",
"typing-extensions",
]
dynamic=["version"]
[project.urls]
homepage = "https://github.com/pyvisa/pyvisa-sim"
documentation = "https://pyvisa-sim.readthedocs.io/en/latest/"
repository = "https://github.com/pyvisa/pyvisa-sim"
changelog = "https://github.com/pyvisa/pyvisa-sim/blob/main/CHANGES.rst"
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "pyvisa_sim/version.py"
write_to_template = """
# This file is auto-generated by setuptools-scm do NOT edit it.
from collections import namedtuple
#: A namedtuple of the version info for the current release.
_version_info = namedtuple("_version_info", "major minor micro status")
parts = "{version}".split(".", 3)
version_info = _version_info(
int(parts[0]),
int(parts[1]),
int(parts[2]),
parts[3] if len(parts) == 4 else "",
)
# Remove everything but the 'version_info' from this module.
del namedtuple, _version_info, parts
__version__ = "{version}"
"""
[tool.black]
line-length = 88 # Enforce the default value
[tool.pytest.ini_options]
minversion = "6.0"
[tool.mypy]
follow_imports = "normal"
strict_optional = true
[[tool.mypy.overrides]]
module = [
"stringparser",
]
ignore_missing_imports = true
[tool.isort]
profile = "black"