|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "OnnxGraphQt" |
| 7 | +readme = "README.md" |
| 8 | +description = "An ONNX model visualizer and editor" |
| 9 | +authors = [{name = "fateshelled"}] |
| 10 | +license = {text = "MIT"} |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 4 - Beta", |
| 13 | + "Environment :: Other Environment", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: Public Domain", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3 :: Only", |
| 20 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 21 | +] |
| 22 | +keywords = ["ONNX", "surgeon"] |
| 23 | +urls = {Homepage = "https://github.com/fateshelled/OnnxGraphQt"} |
| 24 | +requires-python = ">=3.4" |
| 25 | +dependencies = [ |
| 26 | + "PySide2", |
| 27 | + "numpy", |
| 28 | + "onnx", |
| 29 | + "onnx-simplifier", |
| 30 | + "protobuf >= 3.20.0", |
| 31 | + "onnx_graphsurgeon", # https://github.com/NVIDIA/TensorRT/tree/master/tools/onnx-graphsurgeon |
| 32 | + "NodeGraphQt", # https://github.com/jchanvfx/NodeGraphQt |
| 33 | + "simple-onnx-processing-tools", |
| 34 | + "networkx", |
| 35 | + "pygraphviz", |
| 36 | +] |
| 37 | + |
| 38 | +dynamic = ["version"] |
| 39 | + |
| 40 | +[project.scripts] |
| 41 | +onnxgraphqt = "onnxgraphqt.__main__:mainWrapper" |
| 42 | + |
| 43 | +[tool.setuptools] |
| 44 | +zip-safe = true |
| 45 | + |
| 46 | +[tool.setuptools.packages.find] |
| 47 | +include = ["onnxgraphqt", "onnxgraphqt.*"] |
| 48 | + |
| 49 | +[tool.setuptools_scm] |
0 commit comments