Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add setup install_requires #60

Merged
merged 2 commits into from
Apr 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
from __future__ import absolute_import
import setuptools

long_description = "oneflow_onnx is a toolkit for converting trained model of OneFlow to ONNX.\n\n"
long_description = (
"oneflow_onnx is a toolkit for converting trained model of OneFlow to ONNX.\n\n"
)
long_description += "Usage: oneflow_onnx --model_dir src --save_file dist\n"
long_description += "GitHub: https://github.com/Oneflow-Inc/oneflow_convert\n"
long_description += "Email: [email protected]"
Expand All @@ -32,11 +34,11 @@
long_description_content_type="text/plain",
url="https://github.com/Oneflow-Inc/oneflow_convert_tools/oneflow_onnx",
packages=setuptools.find_packages(),
install_requires=['six', 'protobuf'],
install_requires=["six", "protobuf", "onnx", "onnx-simplifier", "onnxruntime-gpu"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license='Apache 2.0'
license="Apache 2.0",
)