-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (51 loc) · 1.22 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "LabToolkit"
dynamic = ["version"]
authors = [
{ name="David Lutton", email="[email protected]" },
]
description = "Python package for instrument control, data acquisition and automation"
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"VISA",
"GPIB",
"USB",
"Serial",
"RS232",
"Measurement",
"Acquisition",
]
dependencies = [
"pyvisa",
"pandas",
"numpy",
]
[project.optional-dependencies]
VXI11 = [
"pyvisa_py",
]
screenshots = [
"Pillow",
]
[project.urls]
Homepage = "https://github.com/DavidLutton/LabToolkit"
Issues = "https://github.com/DavidLutton/LabToolkit/issues"
[tool.hatch.version]
path = "src/labtoolkit/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/labtoolkit"]