forked from ThanatosShinji/onnx-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 776 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
readme = open("README.md", encoding="utf-8").read()
VERSION = "0.9.0"
requirements = [
"onnx",
"numpy",
'tabulate'
]
setup(
# Metadata
name="onnx-tool",
version=VERSION,
author="Luo Yu",
author_email="[email protected]",
url="https://github.com/ThanatosShinji/onnx-tool",
description="A tool for ONNX model: A parser, editor and profiler tool for ONNX models.",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
# Package info
packages=find_packages(),
#
zip_safe=True,
install_requires=requirements,
# Classifiers
classifiers=[
"Programming Language :: Python :: 3",
],
)