-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (78 loc) · 2.22 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyLab-ML"
dynamic = ["version"]
description = "Measurement library for instruments, especially for ATE test"
readme = {file = "README.md", content-type = "text/markdown"}
license = "GPL-2.0-only"
authors = [
{ name = "The Semi-ATE Project Contributors", email = "ate.organization@gmail.com" }
]
requires-python = ">= 3.9"
keywords = [
"Semiconductor",
"ATE",
"Automatic Test Equipment",
"Spyder",
"Plugin"
]
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance"
]
dependencies = [
"hightime",
"h5py",
"ipywidgets",
"nidcpower==1.4.2",
"nidmm==1.4.2",
"niscope==1.4.1",
"nitclk==1.4.1",
"matplotlib",
"paho-mqtt",
"pandas",
"psutil",
"pythonnet",
"pyserial",
"pyvisa",
"pyvisa-py",
"regex",
"semi-ate-common",
"pyyaml",
]
[project.optional-dependencies]
test = [
"pytest==7.1.1",
]
[project.urls]
repository = "https://github.com/Semi-ATE/PyLab-ML"
Documentation = "https://semi-ate.github.io/PyLab-ML"
[tool.hatch.version]
path = "pylab_ml/__init__.py"
[tool.hatch.build.targets.wheel]
packages = [
"pylab_ml"
]
[project.entry-points."ate.org"]
pylabml = "pylab_ml.plugins.pylabml.instruments:Plugin"
[project.scripts]
enter_semiate = "pylab_ml.scripts.enter_semiate:main"