-
Notifications
You must be signed in to change notification settings - Fork 216
/
pyproject.toml
53 lines (47 loc) · 1.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
[build-system]
requires = ["setuptools", "setuptools-protobuf"]
build-backend = "setuptools.build_meta"
[project]
name = "openhtf"
version = "1.6.1"
authors = [
{ name="The OpenHTF Authors"},
]
description = "OpenHTF, the open hardware testing framework."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"attrs>=19.3.0",
"colorama>=0.4.6",
"contextlib2>=21.6.0",
"inflection>=0.5.1",
"google-auth>=1.34.0",
"mutablerecords>=0.4.1",
"protobuf>=5.28.2",
"PyYAML>=6.0.2",
"pyOpenSSL>=17.1.0",
"requests>=2.27.1",
"sockjs_tornado>=1.0.7",
"tornado>=6,<6.5",
"typing_extensions>=4.12.2",
]
license = {file = "LICENSE"}
[project.optional-dependencies]
usb_plugs = [
"libusb1>=3.1.0",
"M2Crypto>=0.42.0",
]
update_units = ["xlrd>=1.0.0"]
serial_collection_plug = ["pyserial>=3.5"]
examples = ["pandas>=2.2.3"]
[project.urls]
Homepage = "https://github.com/google/openhtf"
[tool.setuptools.packages]
find = {}
[tool.setuptools-protobuf]
protobufs = [
"openhtf/output/proto/assembly_event.proto",
"openhtf/output/proto/guzzle.proto",
"openhtf/output/proto/mfg_event.proto",
"openhtf/output/proto/test_runs.proto",
]