forked from daquexian/onnx-simplifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
setup(
name='onnx-simplifier',
# The version will be updated automatically in CI
version='0.0.0',
description='Simplify your ONNX model',
author='daquexian',
author_email='[email protected]',
url='https://github.com/daquexian/onnx-simplifier',
packages=find_packages(),
package_data={'': ['LICENSE']},
license='Apache',
keywords='deep-learning ONNX',
install_requires=[
'onnx',
'onnxruntime >= 0.3.0',
'protobuf >= 3.7.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'
],
python_requires='>=3.5'
)