Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

Commit

Permalink
Changes for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Acharya committed Feb 23, 2018
1 parent 1dd7e4a commit be8cf89
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,23 @@

# pylint: disable=invalid-name, exec-used
"""Setup onnx-mxnet package"""

# To build and upload a new version, follow the steps below.
# Notes:
# - this is a "Universal Wheels" package that is pure Python and supports both Python2 and Python3
# - Twine is a secure PyPi upload package
# $ pip install twine
# $ pip install wheel
# $ python setup.py bdist_wheel --universal
# $ twine upload dist/*

from setuptools import setup, find_packages

pkgs = find_packages()

setup(
name='onnx-mxnet',
version='0.4.1',
version='0.4.2',
description='ONNX-MXNet Model converter',
url='https://github.com/onnx/onnx-mxnet',
keywords='ONNX MXNet model converter deep learning',
Expand Down

0 comments on commit be8cf89

Please sign in to comment.