-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
40 lines (36 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "model-explorer-onnx"
version = "0.3.1"
description = "Adapter for ai-edge-model-explorer to support ONNX models"
authors = [{ name = "Justin Chu", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT License"}
keywords = ["onnx", "model-explorer", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"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",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"ai-edge-model-explorer>=0.1.10",
"numpy",
"onnx",
"onnxscript>=0.1.0.dev20240517",
"ml_dtypes",
]
[project.scripts]
onnxvis = "model_explorer_onnx.bin.onnxvis:main"
[project.urls]
Repository = "https://github.com/justinchuby/model-explorer-onnx"