-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (63 loc) · 2.03 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
[project]
name = "fluke5440b-async"
authors = [
{ name="Patrick Baus", email="[email protected]" },
]
description = "A Python asyncio library for the Fluke 5440B voltage calibrator."
readme = "README.md"
license = { text="GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Home Automation",
"Topic :: Scientific/Engineering",
]
keywords = ["Fluke 5440B", "GPIB", "API"]
dynamic = ["version"]
dependencies = [
"typing-extensions; python_version <'3.11'",
]
[project.urls]
"Homepage" = "https://github.com/PatrickBaus/pyAsyncFluke5440B"
"Bug Tracker" = "https://github.com/PatrickBaus/pyAsyncFluke5440B/issues"
"Download" = "https://github.com/PatrickBaus/pyAsyncFluke5440B/releases"
[project.optional-dependencies]
linux-gpib = ["async-gpib", "gpib-ctypes"]
prologix-gpib = ["prologix-gpib-async"]
dev = [
"async-gpib", "black", "build", "gpib-ctypes", "isort", "mypy", "pre-commit", "prologix-gpib-async", "pylint",
"twine",
]
doc = [
"myst-parser", "sphinx",
]
test = [
"mypy", "pylint", "gpib-ctypes", "prologix-gpib-async", "setuptools",
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
notes = ["FIXME", "XXX",]
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
[build-system]
requires = [
"setuptools>=61.0",
"typing-extensions; python_version <'3.11'",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "fluke5440b_async.__version__"}