-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 816 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "onnxruntime-ep-telum"
version = "0.1.0"
description = "ONNX Runtime plugin Execution Provider (EP) shared library for IBM Telum (s390x)"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [
{name = "IBM"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Operating System :: POSIX :: Linux",
]
# Per ORT guidance, do not force a hard dependency on onnxruntime here.
# Consumers bring their own ORT (Python/C++), and register this plugin library at runtime.
dependencies = []
[tool.setuptools]
package-dir = {"" = "python"}
packages = ["onnxruntime_ep_telum"]
[tool.setuptools.package-data]
onnxruntime_ep_telum = ["lib/*"]