-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.86 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
[project]
name = "prologix-gpib-async"
authors = [
{ name="Patrick Baus", email="[email protected]" },
]
description = "A Python AsyncIO library for the Prologix GPIB (Ethernet) adapter"
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 = ["Prologix", "GPIB", "API"]
dynamic = ["version"]
dependencies = [
"typing-extensions; python_version <'3.11'",
]
[project.urls]
"Homepage" = "https://github.com/PatrickBaus/pyAsyncPrologixGpib"
"Bug Tracker" = "https://github.com/PatrickBaus/pyAsyncPrologixGpib/issues"
"Download" = "https://github.com/PatrickBaus/pyAsyncPrologixGpib/releases"
[project.optional-dependencies]
dev = [
"asyncio_mqtt", "black", "build", "isort", "mypy", "pre-commit", "pylint", "simplejson", "twine",
]
test = [
"asyncio_mqtt", "mypy", "pylint", "setuptools", "simplejson",
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
[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 = "prologix_gpib_async.__version__"}