-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (68 loc) · 2.18 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
[project]
name = "hp3478a-async"
authors = [
{ name="Patrick Baus", email="patrick.baus@physik.tu-darmstadt.de" },
]
description = "Python3 AsyncIO HP3478A driver"
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 = ["HP3478A", "GPIB", "API"]
dependencies = [
"typing-extensions; python_version <'3.11'",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/PatrickBaus/pyAsyncHP3478A"
"Bug Tracker" = "https://github.com/PatrickBaus/pyAsyncHP3478A/issues"
"Download" = "https://github.com/PatrickBaus/pyAsyncHP3478A/releases"
"Documentation" = "https://patrickbaus.github.io/pyAsyncHP3478A/"
[project.optional-dependencies]
linux-gpib = ["async-gpib", "gpib-ctypes"]
prologix-gpib = ["prologix-gpib-async"]
dev = [
"aiofiles", "async-gpib", "black", "build", "gpib-ctypes", "isort", "mypy", "pre-commit", "prologix-gpib-async",
"pylint", "pytest", "twine",
]
doc = [
"myst-parser", "sphinx",
]
test = [
"mypy", "pylint", "pytest", "aiofiles", "gpib-ctypes", "prologix-gpib-async", "setuptools",
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
markers = [
# conftest.py reorders tests moving slow ones to the end of the list
"slow",
]
[build-system]
requires = [
"setuptools>=61.0",
"typing-extensions; python_version <'3.11'",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "hp3478a_async.__version__"}